From dda3f7a841adf8a968d6ce0ef2d2a1d18c95655b Mon Sep 17 00:00:00 2001 From: QM303176530 <303176530@qq.com> Date: Mon, 31 Aug 2020 23:04:53 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E6=88=B7=E5=A4=B4=E5=83=8F=E7=94=B1?= =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=A8=A1=E5=BC=8F=E6=94=B9=E4=B8=BA=20?= =?UTF-8?q?=E5=AA=92=E4=BD=93=E5=BA=93=E9=80=89=E6=8B=A9=E6=A8=A1=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...13\350\257\225\346\226\207\346\241\243.md" | 1 - server/api/v1/sys_user.go | 67 ++---- server/db/qmplus.sql | 134 +++--------- server/db/sqlite/casbin_rule.sql | 6 - server/db/sqlite/sys_apis.sql | 2 - server/docs/docs.go | 197 ++---------------- server/docs/swagger.json | 195 ++--------------- server/docs/swagger.yaml | 143 ++----------- server/go.mod | 3 +- server/model/sys_api.go | 1 - server/model/sys_casbin.go | 3 - server/router/sys_user.go | 2 +- server/service/sys_user.go | 16 +- 13 files changed, 109 insertions(+), 661 deletions(-) diff --git "a/server/GORMV2\346\216\245\345\217\243\346\265\213\350\257\225\346\226\207\346\241\243.md" "b/server/GORMV2\346\216\245\345\217\243\346\265\213\350\257\225\346\226\207\346\241\243.md" index a7876005..9803f640 100644 --- "a/server/GORMV2\346\216\245\345\217\243\346\265\213\350\257\225\346\226\207\346\241\243.md" +++ "b/server/GORMV2\346\216\245\345\217\243\346\265\213\350\257\225\346\226\207\346\241\243.md" @@ -21,7 +21,6 @@ | /menu/updateBaseMenu | 更新菜单 | √ | SliverHorn | | /menu/getBaseMenuById | 根据id获取菜单 | √ | SliverHorn | | /user/changePassword | 修改密码 | √ | SliverHorn | -| /user/uploadHeaderImg | 上传头像 | √ | SliverHorn | | /user/getUserList | 获取用户列表 | √ | SliverHorn | | /user/setUserAuthority | 修改用户角色 | √ | SliverHorn | | /fileUploadAndDownload/upload | 文件上传示例 | √ | SliverHorn | diff --git a/server/api/v1/sys_user.go b/server/api/v1/sys_user.go index 1023366e..f804b71e 100644 --- a/server/api/v1/sys_user.go +++ b/server/api/v1/sys_user.go @@ -90,7 +90,7 @@ func tokenNext(c *gin.Context, user model.SysUser) { NickName: user.NickName, Username: user.Username, AuthorityId: user.AuthorityId, - BufferTime: 60*60*24, // 缓冲时间1天 缓冲时间内会获得新的token刷新令牌 此时一个用户会存在两个有效令牌 但是前端只留一个 另一个会丢失 + BufferTime: 60 * 60 * 24, // 缓冲时间1天 缓冲时间内会获得新的token刷新令牌 此时一个用户会存在两个有效令牌 但是前端只留一个 另一个会丢失 StandardClaims: jwt.StandardClaims{ NotBefore: time.Now().Unix() - 1000, // 签名生效时间 ExpiresAt: time.Now().Unix() + 60*60*24*7, // 过期时间 7天 @@ -174,50 +174,6 @@ type UserHeaderImg struct { HeaderImg multipart.File `json:"headerImg"` } -// @Tags SysUser -// @Summary 用户上传头像 -// @Security ApiKeyAuth -// @accept multipart/form-data -// @Produce application/json -// @Param headerImg formData file true "用户上传头像" -// @Param username formData string true "用户上传头像" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"上传成功"}" -// @Router /user/uploadHeaderImg [post] -func UploadHeaderImg(c *gin.Context) { - claims, _ := c.Get("claims") - // 获取头像文件 - // 这里我们通过断言获取 claims内的所有内容 - waitUse := claims.(*request.CustomClaims) - uuid := waitUse.UUID - _, header, err := c.Request.FormFile("headerImg") - // 便于找到用户 以后从jwt中取 - if err != nil { - response.FailWithMessage(fmt.Sprintf("上传文件失败,%v", err), c) - } else { - // 文件上传后拿到文件路径 - var uploadErr error - var filePath string - if global.GVA_CONFIG.LocalUpload.Local { - // 本地上传 - uploadErr, filePath, _ = utils.UploadAvatarLocal(header) - } else { - // 七牛云上传 - uploadErr, filePath, _ = utils.UploadRemote(header) - } - if uploadErr != nil { - response.FailWithMessage(fmt.Sprintf("接收返回值失败,%v", err), c) - } else { - // 修改数据库后得到修改后的user并且返回供前端使用 - err, user := service.UploadHeaderImg(uuid, filePath) - if err != nil { - response.FailWithMessage(fmt.Sprintf("修改数据库链接失败,%v", err), c) - } else { - response.OkWithData(resp.SysUserResponse{User: *user}, c) - } - } - } -} - // @Tags SysUser // @Summary 分页获取用户列表 // @Security ApiKeyAuth @@ -298,3 +254,24 @@ func DeleteUser(c *gin.Context) { response.OkWithMessage("删除成功", c) } } + +// @Tags SysUser +// @Summary 删除用户 +// @Security ApiKeyAuth +// @accept application/json +// @Produce application/json +// @Param data body model.SysUser true "删除用户" +// @Success 200 {string} string "{"success":true,"data":{},"msg":"修改成功"}" +// @Router /user/setUserInfo [put] +func SetUserInfo(c *gin.Context) { + var user model.SysUser + c.ShouldBindJSON(&user) + err, ReqUser := service.SetUserInfo(user) + if err != nil { + response.FailWithMessage(fmt.Sprintf("更新失败,%v", err), c) + } else { + response.OkWithData(gin.H{ + "userInfo": ReqUser, + }, c) + } +} diff --git a/server/db/qmplus.sql b/server/db/qmplus.sql index cc21e061..6e4e37b5 100644 --- a/server/db/qmplus.sql +++ b/server/db/qmplus.sql @@ -11,7 +11,7 @@ Target Server Version : 50640 File Encoding : 65001 - Date: 23/08/2020 16:29:13 + Date: 31/08/2020 23:00:11 */ SET NAMES utf8mb4; @@ -29,7 +29,7 @@ CREATE TABLE `casbin_rule` ( `v3` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, `v4` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, `v5` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Records of casbin_rule @@ -142,6 +142,7 @@ INSERT INTO `casbin_rule` VALUES ('p', '888', '/user/getInfoList', 'POST', '', ' INSERT INTO `casbin_rule` VALUES ('p', '888', '/user/getUserList', 'POST', '', '', ''); INSERT INTO `casbin_rule` VALUES ('p', '888', '/user/setUserAuthority', 'POST', '', '', ''); INSERT INTO `casbin_rule` VALUES ('p', '888', '/user/deleteUser', 'DELETE', '', '', ''); +INSERT INTO `casbin_rule` VALUES ('p', '888', '/user/setUserInfo', 'PUT', '', '', ''); INSERT INTO `casbin_rule` VALUES ('p', '888', '/fileUploadAndDownload/upload', 'POST', '', '', ''); INSERT INTO `casbin_rule` VALUES ('p', '888', '/fileUploadAndDownload/getFileList', 'POST', '', '', ''); INSERT INTO `casbin_rule` VALUES ('p', '888', '/fileUploadAndDownload/deleteFile', 'POST', '', '', ''); @@ -195,7 +196,7 @@ CREATE TABLE `exa_customers` ( `sys_user_authority_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '负责员工角色', PRIMARY KEY (`id`) USING BTREE, INDEX `idx_exa_customers_deleted_at`(`deleted_at`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Records of exa_customers @@ -216,7 +217,7 @@ CREATE TABLE `exa_file_chunks` ( `file_chunk_number` int(11) NULL DEFAULT NULL COMMENT '切片标号', PRIMARY KEY (`id`) USING BTREE, INDEX `idx_exa_file_chunks_deleted_at`(`deleted_at`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Table structure for exa_file_upload_and_downloads @@ -234,13 +235,13 @@ CREATE TABLE `exa_file_upload_and_downloads` ( PRIMARY KEY (`id`) USING BTREE, INDEX `idx_file_upload_and_downloads_deleted_at`(`deleted_at`) USING BTREE, INDEX `idx_exa_file_upload_and_downloads_deleted_at`(`deleted_at`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 20 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB AUTO_INCREMENT = 20 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Records of exa_file_upload_and_downloads -- ---------------------------- -INSERT INTO `exa_file_upload_and_downloads` VALUES (17, '2020-04-26 11:51:39', '2020-04-26 11:51:39', NULL, '10.png', 'http://qmplusimg.henrongyi.top/158787308910.png', 'png', '158787308910.png'); -INSERT INTO `exa_file_upload_and_downloads` VALUES (19, '2020-04-27 15:48:38', '2020-04-27 15:48:38', NULL, 'logo.png', 'http://qmplusimg.henrongyi.top/1587973709logo.png', 'png', '1587973709logo.png'); +INSERT INTO `exa_file_upload_and_downloads` VALUES (17, '2020-04-26 11:51:39', '2020-04-26 11:51:39', NULL, '10.png', 'http://qmplusimg.henrongyi.top/gvalogo.png', 'png', '158787308910.png'); +INSERT INTO `exa_file_upload_and_downloads` VALUES (19, '2020-04-27 15:48:38', '2020-04-27 15:48:38', NULL, 'logo.png', 'http://qmplusimg.henrongyi.top/1576554439myAvatar.png', 'png', '1587973709logo.png'); -- ---------------------------- -- Table structure for exa_files @@ -258,7 +259,7 @@ CREATE TABLE `exa_files` ( `is_finish` tinyint(1) NULL DEFAULT NULL COMMENT '是否完整', PRIMARY KEY (`id`) USING BTREE, INDEX `idx_exa_files_deleted_at`(`deleted_at`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Table structure for exa_simple_uploaders @@ -274,7 +275,7 @@ CREATE TABLE `exa_simple_uploaders` ( `total_chunks` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '切片总数', `is_done` tinyint(1) NULL DEFAULT NULL COMMENT '是否上传完成', `file_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '文件本地路径' -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Records of exa_simple_uploaders @@ -293,7 +294,7 @@ CREATE TABLE `jwt_blacklists` ( `jwt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL COMMENT 'jwt', PRIMARY KEY (`id`) USING BTREE, INDEX `idx_jwt_blacklists_deleted_at`(`deleted_at`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Table structure for sys_apis @@ -312,7 +313,7 @@ CREATE TABLE `sys_apis` ( PRIMARY KEY (`id`) USING BTREE, INDEX `idx_apis_deleted_at`(`deleted_at`) USING BTREE, INDEX `idx_sys_apis_deleted_at`(`deleted_at`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 103 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB AUTO_INCREMENT = 104 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Records of sys_apis @@ -383,6 +384,7 @@ INSERT INTO `sys_apis` VALUES (99, '2020-07-07 15:59:53', '2020-07-07 15:59:53', INSERT INTO `sys_apis` VALUES (100, '2020-08-15 12:10:55', '2020-08-15 12:10:55', NULL, NULL, '/simpleUploader/upload', '插件版分片上传', 'simpleUploader', 'POST'); INSERT INTO `sys_apis` VALUES (101, '2020-08-15 19:53:53', '2020-08-15 19:53:53', NULL, NULL, '/simpleUploader/checkFileMd5', '文件完整度验证', 'simpleUploader', 'GET'); INSERT INTO `sys_apis` VALUES (102, '2020-08-15 22:28:04', '2020-08-15 22:28:04', NULL, NULL, '/simpleUploader/mergeFileMd5', '上传完成合并文件', 'simpleUploader', 'GET'); +INSERT INTO `sys_apis` VALUES (103, '2020-08-31 22:47:44', '2020-08-31 22:47:44', NULL, NULL, '/user/setUserInfo', '设置用户信息', 'user', 'PUT'); -- ---------------------------- -- Table structure for sys_authorities @@ -398,7 +400,7 @@ CREATE TABLE `sys_authorities` ( PRIMARY KEY (`authority_id`) USING BTREE, UNIQUE INDEX `authority_id`(`authority_id`) USING BTREE, INDEX `idx_sys_authorities_deleted_at`(`deleted_at`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Records of sys_authorities @@ -440,6 +442,7 @@ INSERT INTO `sys_authority_menus` VALUES ('888', 34); INSERT INTO `sys_authority_menus` VALUES ('888', 38); INSERT INTO `sys_authority_menus` VALUES ('888', 40); INSERT INTO `sys_authority_menus` VALUES ('888', 41); +INSERT INTO `sys_authority_menus` VALUES ('888', 42); INSERT INTO `sys_authority_menus` VALUES ('888', 50); INSERT INTO `sys_authority_menus` VALUES ('888', 51); INSERT INTO `sys_authority_menus` VALUES ('888', 52); @@ -485,7 +488,7 @@ CREATE TABLE `sys_base_menu_parameters` ( `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE, INDEX `idx_sys_base_menu_parameters_deleted_at`(`deleted_at`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Table structure for sys_base_menus @@ -511,7 +514,7 @@ CREATE TABLE `sys_base_menus` ( PRIMARY KEY (`id`) USING BTREE, INDEX `idx_base_menus_deleted_at`(`deleted_at`) USING BTREE, INDEX `idx_sys_base_menus_deleted_at`(`deleted_at`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 54 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB AUTO_INCREMENT = 54 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Records of sys_base_menus @@ -573,7 +576,7 @@ CREATE TABLE `sys_dictionaries` ( `desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '描述', PRIMARY KEY (`id`) USING BTREE, INDEX `idx_sys_dictionaries_deleted_at`(`deleted_at`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Records of sys_dictionaries @@ -601,7 +604,7 @@ CREATE TABLE `sys_dictionary_details` ( `sys_dictionary_id` int(11) NULL DEFAULT NULL COMMENT '关联标记', PRIMARY KEY (`id`) USING BTREE, INDEX `idx_sys_dictionary_details_deleted_at`(`deleted_at`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 38 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB AUTO_INCREMENT = 38 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Records of sys_dictionary_details @@ -651,94 +654,7 @@ CREATE TABLE `sys_operation_records` ( `resp` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL COMMENT '响应Body', PRIMARY KEY (`id`) USING BTREE, INDEX `idx_sys_operation_records_deleted_at`(`deleted_at`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 84 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; - --- ---------------------------- --- Records of sys_operation_records --- ---------------------------- -INSERT INTO `sys_operation_records` VALUES (1, '2020-08-16 19:43:50', '2020-08-16 19:43:50', NULL, '127.0.0.1', 'GET', '/sysDictionary/getSysDictionaryList', 200, 2929000, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":2,\"CreatedAt\":\"2020-06-24T20:44:00+08:00\",\"UpdatedAt\":\"2020-06-24T20:44:00+08:00\",\"DeletedAt\":null,\"name\":\"性别\",\"type\":\"sex\",\"status\":true,\"desc\":\"性别字典\",\"sysDictionaryDetails\":null},{\"ID\":3,\"CreatedAt\":\"2020-07-05T15:27:31+08:00\",\"UpdatedAt\":\"2020-07-05T15:27:31+08:00\",\"DeletedAt\":null,\"name\":\"数据库int类型\",\"type\":\"int\",\"status\":true,\"desc\":\"int类型对应的数据库类型\",\"sysDictionaryDetails\":null},{\"ID\":4,\"CreatedAt\":\"2020-07-05T15:33:07+08:00\",\"UpdatedAt\":\"2020-07-05T16:07:18+08:00\",\"DeletedAt\":null,\"name\":\"数据库时间日期类型\",\"type\":\"time.Time\",\"status\":true,\"desc\":\"数据库时间日期类型\",\"sysDictionaryDetails\":null},{\"ID\":5,\"CreatedAt\":\"2020-07-05T15:34:23+08:00\",\"UpdatedAt\":\"2020-07-05T15:52:45+08:00\",\"DeletedAt\":null,\"name\":\"数据库浮点型\",\"type\":\"float64\",\"status\":true,\"desc\":\"数据库浮点型\",\"sysDictionaryDetails\":null},{\"ID\":6,\"CreatedAt\":\"2020-07-05T15:35:05+08:00\",\"UpdatedAt\":\"2020-07-05T15:35:05+08:00\",\"DeletedAt\":null,\"name\":\"数据库字符串\",\"type\":\"string\",\"status\":true,\"desc\":\"数据库字符串\",\"sysDictionaryDetails\":null},{\"ID\":7,\"CreatedAt\":\"2020-07-05T15:36:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:36:48+08:00\",\"DeletedAt\":null,\"name\":\"数据库bool类型\",\"type\":\"bool\",\"status\":true,\"desc\":\"数据库bool类型\",\"sysDictionaryDetails\":null}],\"total\":6,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (2, '2020-08-16 19:48:33', '2020-08-16 19:48:33', NULL, '127.0.0.1', 'GET', '/sysDictionary/getSysDictionaryList', 200, 976400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":2,\"CreatedAt\":\"2020-06-24T20:44:00+08:00\",\"UpdatedAt\":\"2020-06-24T20:44:00+08:00\",\"DeletedAt\":null,\"name\":\"性别\",\"type\":\"sex\",\"status\":true,\"desc\":\"性别字典\",\"sysDictionaryDetails\":null},{\"ID\":3,\"CreatedAt\":\"2020-07-05T15:27:31+08:00\",\"UpdatedAt\":\"2020-07-05T15:27:31+08:00\",\"DeletedAt\":null,\"name\":\"数据库int类型\",\"type\":\"int\",\"status\":true,\"desc\":\"int类型对应的数据库类型\",\"sysDictionaryDetails\":null},{\"ID\":4,\"CreatedAt\":\"2020-07-05T15:33:07+08:00\",\"UpdatedAt\":\"2020-07-05T16:07:18+08:00\",\"DeletedAt\":null,\"name\":\"数据库时间日期类型\",\"type\":\"time.Time\",\"status\":true,\"desc\":\"数据库时间日期类型\",\"sysDictionaryDetails\":null},{\"ID\":5,\"CreatedAt\":\"2020-07-05T15:34:23+08:00\",\"UpdatedAt\":\"2020-07-05T15:52:45+08:00\",\"DeletedAt\":null,\"name\":\"数据库浮点型\",\"type\":\"float64\",\"status\":true,\"desc\":\"数据库浮点型\",\"sysDictionaryDetails\":null},{\"ID\":6,\"CreatedAt\":\"2020-07-05T15:35:05+08:00\",\"UpdatedAt\":\"2020-07-05T15:35:05+08:00\",\"DeletedAt\":null,\"name\":\"数据库字符串\",\"type\":\"string\",\"status\":true,\"desc\":\"数据库字符串\",\"sysDictionaryDetails\":null},{\"ID\":7,\"CreatedAt\":\"2020-07-05T15:36:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:36:48+08:00\",\"DeletedAt\":null,\"name\":\"数据库bool类型\",\"type\":\"bool\",\"status\":true,\"desc\":\"数据库bool类型\",\"sysDictionaryDetails\":null}],\"total\":6,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (3, '2020-08-16 19:48:39', '2020-08-16 19:48:39', NULL, '127.0.0.1', 'POST', '/user/getUserList', 200, 9751500, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":10}', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":10,\"CreatedAt\":\"2019-09-13T17:23:46+08:00\",\"UpdatedAt\":\"2020-06-26T21:17:50+08:00\",\"DeletedAt\":null,\"uuid\":\"ce0d6685-c15f-4126-a5b4-890bc9d2356d\",\"userName\":\"admin\",\"nickName\":\"超级管理员\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1571627762timg.jpg\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"888\"},{\"ID\":11,\"CreatedAt\":\"2019-09-13T17:27:29+08:00\",\"UpdatedAt\":\"2019-09-13T17:27:29+08:00\",\"DeletedAt\":null,\"uuid\":\"fd6ef79b-944c-4888-8377-abe2d2608858\",\"userName\":\"a303176530\",\"nickName\":\"QMPlusUser\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1572075907logo.png\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"9528\"}],\"total\":2,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (4, '2020-08-16 19:48:39', '2020-08-16 19:48:39', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 11717200, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (5, '2020-08-16 19:48:40', '2020-08-16 19:48:40', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 2929300, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (6, '2020-08-16 19:48:41', '2020-08-16 19:48:41', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 2927700, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (7, '2020-08-16 19:48:46', '2020-08-16 19:48:46', NULL, '127.0.0.1', 'GET', '/sysDictionary/getSysDictionaryList', 200, 976700, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":2,\"CreatedAt\":\"2020-06-24T20:44:00+08:00\",\"UpdatedAt\":\"2020-06-24T20:44:00+08:00\",\"DeletedAt\":null,\"name\":\"性别\",\"type\":\"sex\",\"status\":true,\"desc\":\"性别字典\",\"sysDictionaryDetails\":null},{\"ID\":3,\"CreatedAt\":\"2020-07-05T15:27:31+08:00\",\"UpdatedAt\":\"2020-07-05T15:27:31+08:00\",\"DeletedAt\":null,\"name\":\"数据库int类型\",\"type\":\"int\",\"status\":true,\"desc\":\"int类型对应的数据库类型\",\"sysDictionaryDetails\":null},{\"ID\":4,\"CreatedAt\":\"2020-07-05T15:33:07+08:00\",\"UpdatedAt\":\"2020-07-05T16:07:18+08:00\",\"DeletedAt\":null,\"name\":\"数据库时间日期类型\",\"type\":\"time.Time\",\"status\":true,\"desc\":\"数据库时间日期类型\",\"sysDictionaryDetails\":null},{\"ID\":5,\"CreatedAt\":\"2020-07-05T15:34:23+08:00\",\"UpdatedAt\":\"2020-07-05T15:52:45+08:00\",\"DeletedAt\":null,\"name\":\"数据库浮点型\",\"type\":\"float64\",\"status\":true,\"desc\":\"数据库浮点型\",\"sysDictionaryDetails\":null},{\"ID\":6,\"CreatedAt\":\"2020-07-05T15:35:05+08:00\",\"UpdatedAt\":\"2020-07-05T15:35:05+08:00\",\"DeletedAt\":null,\"name\":\"数据库字符串\",\"type\":\"string\",\"status\":true,\"desc\":\"数据库字符串\",\"sysDictionaryDetails\":null},{\"ID\":7,\"CreatedAt\":\"2020-07-05T15:36:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:36:48+08:00\",\"DeletedAt\":null,\"name\":\"数据库bool类型\",\"type\":\"bool\",\"status\":true,\"desc\":\"数据库bool类型\",\"sysDictionaryDetails\":null}],\"total\":6,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (8, '2020-08-16 19:49:20', '2020-08-16 19:49:20', NULL, '127.0.0.1', 'GET', '/sysDictionary/findSysDictionary', 200, 1952600, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"resysDictionary\":{\"ID\":6,\"CreatedAt\":\"2020-07-05T15:35:05+08:00\",\"UpdatedAt\":\"2020-07-05T15:35:05+08:00\",\"DeletedAt\":null,\"name\":\"数据库字符串\",\"type\":\"string\",\"status\":true,\"desc\":\"数据库字符串\",\"sysDictionaryDetails\":[{\"ID\":28,\"CreatedAt\":\"2020-07-05T15:53:25+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:25+08:00\",\"DeletedAt\":null,\"label\":\"char\",\"value\":0,\"status\":true,\"sort\":0,\"sysDictionaryID\":6},{\"ID\":29,\"CreatedAt\":\"2020-07-05T15:53:29+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:29+08:00\",\"DeletedAt\":null,\"label\":\"varchar\",\"value\":1,\"status\":true,\"sort\":1,\"sysDictionaryID\":6},{\"ID\":30,\"CreatedAt\":\"2020-07-05T15:53:35+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:35+08:00\",\"DeletedAt\":null,\"label\":\"tinyblob\",\"value\":2,\"status\":true,\"sort\":2,\"sysDictionaryID\":6},{\"ID\":31,\"CreatedAt\":\"2020-07-05T15:53:40+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:40+08:00\",\"DeletedAt\":null,\"label\":\"tinytext\",\"value\":3,\"status\":true,\"sort\":3,\"sysDictionaryID\":6},{\"ID\":32,\"CreatedAt\":\"2020-07-05T15:53:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:48+08:00\",\"DeletedAt\":null,\"label\":\"text\",\"value\":4,\"status\":true,\"sort\":4,\"sysDictionaryID\":6},{\"ID\":33,\"CreatedAt\":\"2020-07-05T15:53:55+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:55+08:00\",\"DeletedAt\":null,\"label\":\"blob\",\"value\":5,\"status\":true,\"sort\":5,\"sysDictionaryID\":6},{\"ID\":34,\"CreatedAt\":\"2020-07-05T15:54:02+08:00\",\"UpdatedAt\":\"2020-07-05T15:54:02+08:00\",\"DeletedAt\":null,\"label\":\"mediumblob\",\"value\":6,\"status\":true,\"sort\":6,\"sysDictionaryID\":6},{\"ID\":35,\"CreatedAt\":\"2020-07-05T15:54:09+08:00\",\"UpdatedAt\":\"2020-07-05T15:54:09+08:00\",\"DeletedAt\":null,\"label\":\"mediumtext\",\"value\":7,\"status\":true,\"sort\":7,\"sysDictionaryID\":6},{\"ID\":36,\"CreatedAt\":\"2020-07-05T15:54:16+08:00\",\"UpdatedAt\":\"2020-07-05T15:54:16+08:00\",\"DeletedAt\":null,\"label\":\"longblob\",\"value\":8,\"status\":true,\"sort\":8,\"sysDictionaryID\":6},{\"ID\":37,\"CreatedAt\":\"2020-07-05T15:54:24+08:00\",\"UpdatedAt\":\"2020-07-05T15:54:24+08:00\",\"DeletedAt\":null,\"label\":\"longtext\",\"value\":9,\"status\":true,\"sort\":9,\"sysDictionaryID\":6}]}},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (9, '2020-08-16 19:49:20', '2020-08-16 19:49:20', NULL, '127.0.0.1', 'GET', '/sysDictionary/findSysDictionary', 200, 963000, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"resysDictionary\":{\"ID\":3,\"CreatedAt\":\"2020-07-05T15:27:31+08:00\",\"UpdatedAt\":\"2020-07-05T15:27:31+08:00\",\"DeletedAt\":null,\"name\":\"数据库int类型\",\"type\":\"int\",\"status\":true,\"desc\":\"int类型对应的数据库类型\",\"sysDictionaryDetails\":[{\"ID\":12,\"CreatedAt\":\"2020-07-05T15:31:41+08:00\",\"UpdatedAt\":\"2020-07-05T15:31:41+08:00\",\"DeletedAt\":null,\"label\":\"smallint\",\"value\":1,\"status\":true,\"sort\":1,\"sysDictionaryID\":3},{\"ID\":13,\"CreatedAt\":\"2020-07-05T15:31:52+08:00\",\"UpdatedAt\":\"2020-07-05T15:31:52+08:00\",\"DeletedAt\":null,\"label\":\"mediumint\",\"value\":2,\"status\":true,\"sort\":2,\"sysDictionaryID\":3},{\"ID\":14,\"CreatedAt\":\"2020-07-05T15:32:04+08:00\",\"UpdatedAt\":\"2020-07-05T15:32:04+08:00\",\"DeletedAt\":null,\"label\":\"int\",\"value\":3,\"status\":true,\"sort\":3,\"sysDictionaryID\":3},{\"ID\":15,\"CreatedAt\":\"2020-07-05T15:32:11+08:00\",\"UpdatedAt\":\"2020-07-05T15:32:11+08:00\",\"DeletedAt\":null,\"label\":\"bigint\",\"value\":4,\"status\":true,\"sort\":4,\"sysDictionaryID\":3}]}},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (10, '2020-08-16 19:49:21', '2020-08-16 19:49:21', NULL, '127.0.0.1', 'GET', '/sysDictionary/findSysDictionary', 200, 977800, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"resysDictionary\":{\"ID\":5,\"CreatedAt\":\"2020-07-05T15:34:23+08:00\",\"UpdatedAt\":\"2020-07-05T15:52:45+08:00\",\"DeletedAt\":null,\"name\":\"数据库浮点型\",\"type\":\"float64\",\"status\":true,\"desc\":\"数据库浮点型\",\"sysDictionaryDetails\":[{\"ID\":24,\"CreatedAt\":\"2020-07-05T15:34:30+08:00\",\"UpdatedAt\":\"2020-07-05T15:34:30+08:00\",\"DeletedAt\":null,\"label\":\"float\",\"value\":0,\"status\":true,\"sort\":0,\"sysDictionaryID\":5},{\"ID\":25,\"CreatedAt\":\"2020-07-05T15:34:35+08:00\",\"UpdatedAt\":\"2020-07-05T15:34:35+08:00\",\"DeletedAt\":null,\"label\":\"double\",\"value\":1,\"status\":true,\"sort\":1,\"sysDictionaryID\":5},{\"ID\":26,\"CreatedAt\":\"2020-07-05T15:34:41+08:00\",\"UpdatedAt\":\"2020-07-05T15:34:41+08:00\",\"DeletedAt\":null,\"label\":\"decimal\",\"value\":2,\"status\":true,\"sort\":2,\"sysDictionaryID\":5}]}},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (11, '2020-08-16 19:49:20', '2020-08-16 19:49:20', NULL, '127.0.0.1', 'GET', '/sysDictionary/findSysDictionary', 200, 976800, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"resysDictionary\":{\"ID\":4,\"CreatedAt\":\"2020-07-05T15:33:07+08:00\",\"UpdatedAt\":\"2020-07-05T16:07:18+08:00\",\"DeletedAt\":null,\"name\":\"数据库时间日期类型\",\"type\":\"time.Time\",\"status\":true,\"desc\":\"数据库时间日期类型\",\"sysDictionaryDetails\":[{\"ID\":19,\"CreatedAt\":\"2020-07-05T15:33:16+08:00\",\"UpdatedAt\":\"2020-07-05T15:33:16+08:00\",\"DeletedAt\":null,\"label\":\"data\",\"value\":0,\"status\":true,\"sort\":0,\"sysDictionaryID\":4},{\"ID\":20,\"CreatedAt\":\"2020-07-05T15:33:21+08:00\",\"UpdatedAt\":\"2020-07-05T15:33:21+08:00\",\"DeletedAt\":null,\"label\":\"time\",\"value\":1,\"status\":true,\"sort\":1,\"sysDictionaryID\":4},{\"ID\":21,\"CreatedAt\":\"2020-07-05T15:33:25+08:00\",\"UpdatedAt\":\"2020-07-05T15:33:25+08:00\",\"DeletedAt\":null,\"label\":\"year\",\"value\":2,\"status\":true,\"sort\":2,\"sysDictionaryID\":4},{\"ID\":22,\"CreatedAt\":\"2020-07-05T15:33:35+08:00\",\"UpdatedAt\":\"2020-07-05T15:33:35+08:00\",\"DeletedAt\":null,\"label\":\"datetime\",\"value\":3,\"status\":true,\"sort\":3,\"sysDictionaryID\":4},{\"ID\":23,\"CreatedAt\":\"2020-07-05T15:33:42+08:00\",\"UpdatedAt\":\"2020-07-05T15:33:42+08:00\",\"DeletedAt\":null,\"label\":\"timestamp\",\"value\":5,\"status\":true,\"sort\":5,\"sysDictionaryID\":4}]}},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (12, '2020-08-16 19:49:20', '2020-08-16 19:49:20', NULL, '127.0.0.1', 'GET', '/sysDictionary/findSysDictionary', 200, 977800, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"resysDictionary\":{\"ID\":7,\"CreatedAt\":\"2020-07-05T15:36:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:36:48+08:00\",\"DeletedAt\":null,\"name\":\"数据库bool类型\",\"type\":\"bool\",\"status\":true,\"desc\":\"数据库bool类型\",\"sysDictionaryDetails\":[{\"ID\":27,\"CreatedAt\":\"2020-07-05T15:37:45+08:00\",\"UpdatedAt\":\"2020-07-05T15:37:45+08:00\",\"DeletedAt\":null,\"label\":\"tinyint\",\"value\":0,\"status\":true,\"sort\":0,\"sysDictionaryID\":7}]}},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (13, '2020-08-16 19:49:21', '2020-08-16 19:49:21', NULL, '127.0.0.1', 'GET', '/autoCode/getDB', 200, 68432700, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"dbs\":[{\"database\":\"information_schema\"},{\"database\":\"demo\"},{\"database\":\"ginclass\"},{\"database\":\"history\"},{\"database\":\"mysql\"},{\"database\":\"pandora\"},{\"database\":\"performance_schema\"},{\"database\":\"qmplus\"},{\"database\":\"qmplus1\"},{\"database\":\"sakila\"},{\"database\":\"tanbao\"},{\"database\":\"test\"},{\"database\":\"world\"},{\"database\":\"zhongzerong\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (14, '2020-08-16 19:50:56', '2020-08-16 19:50:56', NULL, '127.0.0.1', 'GET', '/customer/customerList', 200, 2928400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":1,\"CreatedAt\":\"2020-02-25T18:01:48+08:00\",\"UpdatedAt\":\"2020-04-10T12:29:29+08:00\",\"DeletedAt\":null,\"customerName\":\"测试客户\",\"customerPhoneData\":\"1761111111\",\"sysUserId\":10,\"sysUserAuthorityID\":\"888\",\"sysUser\":{\"ID\":10,\"CreatedAt\":\"2019-09-13T17:23:46+08:00\",\"UpdatedAt\":\"2020-06-26T21:17:50+08:00\",\"DeletedAt\":null,\"uuid\":\"ce0d6685-c15f-4126-a5b4-890bc9d2356d\",\"userName\":\"admin\",\"nickName\":\"超级管理员\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1571627762timg.jpg\",\"authority\":{\"CreatedAt\":\"0001-01-01T00:00:00Z\",\"UpdatedAt\":\"0001-01-01T00:00:00Z\",\"DeletedAt\":null,\"authorityId\":\"\",\"authorityName\":\"\",\"parentId\":\"\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"888\"}}],\"total\":1,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (15, '2020-08-16 19:52:30', '2020-08-16 19:52:30', NULL, '127.0.0.1', 'GET', '/customer/customerList', 200, 2927200, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":1,\"CreatedAt\":\"2020-02-25T18:01:48+08:00\",\"UpdatedAt\":\"2020-04-10T12:29:29+08:00\",\"DeletedAt\":null,\"customerName\":\"测试客户\",\"customerPhoneData\":\"1761111111\",\"sysUserId\":10,\"sysUserAuthorityID\":\"888\",\"sysUser\":{\"ID\":10,\"CreatedAt\":\"2019-09-13T17:23:46+08:00\",\"UpdatedAt\":\"2020-06-26T21:17:50+08:00\",\"DeletedAt\":null,\"uuid\":\"ce0d6685-c15f-4126-a5b4-890bc9d2356d\",\"userName\":\"admin\",\"nickName\":\"超级管理员\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1571627762timg.jpg\",\"authority\":{\"CreatedAt\":\"0001-01-01T00:00:00Z\",\"UpdatedAt\":\"0001-01-01T00:00:00Z\",\"DeletedAt\":null,\"authorityId\":\"\",\"authorityName\":\"\",\"parentId\":\"\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"888\"}}],\"total\":1,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (16, '2020-08-16 19:52:34', '2020-08-16 19:52:34', NULL, '127.0.0.1', 'GET', '/customer/customerList', 200, 2915500, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":1,\"CreatedAt\":\"2020-02-25T18:01:48+08:00\",\"UpdatedAt\":\"2020-04-10T12:29:29+08:00\",\"DeletedAt\":null,\"customerName\":\"测试客户\",\"customerPhoneData\":\"1761111111\",\"sysUserId\":10,\"sysUserAuthorityID\":\"888\",\"sysUser\":{\"ID\":10,\"CreatedAt\":\"2019-09-13T17:23:46+08:00\",\"UpdatedAt\":\"2020-06-26T21:17:50+08:00\",\"DeletedAt\":null,\"uuid\":\"ce0d6685-c15f-4126-a5b4-890bc9d2356d\",\"userName\":\"admin\",\"nickName\":\"超级管理员\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1571627762timg.jpg\",\"authority\":{\"CreatedAt\":\"0001-01-01T00:00:00Z\",\"UpdatedAt\":\"0001-01-01T00:00:00Z\",\"DeletedAt\":null,\"authorityId\":\"\",\"authorityName\":\"\",\"parentId\":\"\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"888\"}}],\"total\":1,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (17, '2020-08-16 19:52:51', '2020-08-16 19:52:51', NULL, '127.0.0.1', 'GET', '/customer/customerList', 200, 1952400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":1,\"CreatedAt\":\"2020-02-25T18:01:48+08:00\",\"UpdatedAt\":\"2020-04-10T12:29:29+08:00\",\"DeletedAt\":null,\"customerName\":\"测试客户\",\"customerPhoneData\":\"1761111111\",\"sysUserId\":10,\"sysUserAuthorityID\":\"888\",\"sysUser\":{\"ID\":10,\"CreatedAt\":\"2019-09-13T17:23:46+08:00\",\"UpdatedAt\":\"2020-06-26T21:17:50+08:00\",\"DeletedAt\":null,\"uuid\":\"ce0d6685-c15f-4126-a5b4-890bc9d2356d\",\"userName\":\"admin\",\"nickName\":\"超级管理员\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1571627762timg.jpg\",\"authority\":{\"CreatedAt\":\"0001-01-01T00:00:00Z\",\"UpdatedAt\":\"0001-01-01T00:00:00Z\",\"DeletedAt\":null,\"authorityId\":\"\",\"authorityName\":\"\",\"parentId\":\"\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"888\"}}],\"total\":1,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (18, '2020-08-16 20:16:27', '2020-08-16 20:16:27', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 2929000, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (19, '2020-08-16 20:16:28', '2020-08-16 20:16:28', NULL, '127.0.0.1', 'POST', '/user/getUserList', 200, 3905300, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":10}', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":10,\"CreatedAt\":\"2019-09-13T17:23:46+08:00\",\"UpdatedAt\":\"2020-06-26T21:17:50+08:00\",\"DeletedAt\":null,\"uuid\":\"ce0d6685-c15f-4126-a5b4-890bc9d2356d\",\"userName\":\"admin\",\"nickName\":\"超级管理员\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1571627762timg.jpg\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"888\"},{\"ID\":11,\"CreatedAt\":\"2019-09-13T17:27:29+08:00\",\"UpdatedAt\":\"2019-09-13T17:27:29+08:00\",\"DeletedAt\":null,\"uuid\":\"fd6ef79b-944c-4888-8377-abe2d2608858\",\"userName\":\"a303176530\",\"nickName\":\"QMPlusUser\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1572075907logo.png\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"9528\"}],\"total\":2,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (20, '2020-08-16 20:16:28', '2020-08-16 20:16:28', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 2918400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (21, '2020-08-16 20:16:30', '2020-08-16 20:16:30', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 2919300, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (22, '2020-08-16 20:16:33', '2020-08-16 20:16:33', NULL, '127.0.0.1', 'POST', '/user/getUserList', 200, 1954000, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":10}', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":10,\"CreatedAt\":\"2019-09-13T17:23:46+08:00\",\"UpdatedAt\":\"2020-06-26T21:17:50+08:00\",\"DeletedAt\":null,\"uuid\":\"ce0d6685-c15f-4126-a5b4-890bc9d2356d\",\"userName\":\"admin\",\"nickName\":\"超级管理员\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1571627762timg.jpg\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"888\"},{\"ID\":11,\"CreatedAt\":\"2019-09-13T17:27:29+08:00\",\"UpdatedAt\":\"2019-09-13T17:27:29+08:00\",\"DeletedAt\":null,\"uuid\":\"fd6ef79b-944c-4888-8377-abe2d2608858\",\"userName\":\"a303176530\",\"nickName\":\"QMPlusUser\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1572075907logo.png\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"9528\"}],\"total\":2,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (23, '2020-08-16 20:16:33', '2020-08-16 20:16:33', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 4880800, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (24, '2020-08-16 20:16:33', '2020-08-16 20:16:33', NULL, '127.0.0.1', 'GET', '/sysDictionary/getSysDictionaryList', 200, 974700, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":2,\"CreatedAt\":\"2020-06-24T20:44:00+08:00\",\"UpdatedAt\":\"2020-06-24T20:44:00+08:00\",\"DeletedAt\":null,\"name\":\"性别\",\"type\":\"sex\",\"status\":true,\"desc\":\"性别字典\",\"sysDictionaryDetails\":null},{\"ID\":3,\"CreatedAt\":\"2020-07-05T15:27:31+08:00\",\"UpdatedAt\":\"2020-07-05T15:27:31+08:00\",\"DeletedAt\":null,\"name\":\"数据库int类型\",\"type\":\"int\",\"status\":true,\"desc\":\"int类型对应的数据库类型\",\"sysDictionaryDetails\":null},{\"ID\":4,\"CreatedAt\":\"2020-07-05T15:33:07+08:00\",\"UpdatedAt\":\"2020-07-05T16:07:18+08:00\",\"DeletedAt\":null,\"name\":\"数据库时间日期类型\",\"type\":\"time.Time\",\"status\":true,\"desc\":\"数据库时间日期类型\",\"sysDictionaryDetails\":null},{\"ID\":5,\"CreatedAt\":\"2020-07-05T15:34:23+08:00\",\"UpdatedAt\":\"2020-07-05T15:52:45+08:00\",\"DeletedAt\":null,\"name\":\"数据库浮点型\",\"type\":\"float64\",\"status\":true,\"desc\":\"数据库浮点型\",\"sysDictionaryDetails\":null},{\"ID\":6,\"CreatedAt\":\"2020-07-05T15:35:05+08:00\",\"UpdatedAt\":\"2020-07-05T15:35:05+08:00\",\"DeletedAt\":null,\"name\":\"数据库字符串\",\"type\":\"string\",\"status\":true,\"desc\":\"数据库字符串\",\"sysDictionaryDetails\":null},{\"ID\":7,\"CreatedAt\":\"2020-07-05T15:36:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:36:48+08:00\",\"DeletedAt\":null,\"name\":\"数据库bool类型\",\"type\":\"bool\",\"status\":true,\"desc\":\"数据库bool类型\",\"sysDictionaryDetails\":null}],\"total\":6,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (25, '2020-08-16 20:16:33', '2020-08-16 20:16:33', NULL, '127.0.0.1', 'GET', '/sysDictionary/getSysDictionaryList', 200, 875100, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":2,\"CreatedAt\":\"2020-06-24T20:44:00+08:00\",\"UpdatedAt\":\"2020-06-24T20:44:00+08:00\",\"DeletedAt\":null,\"name\":\"性别\",\"type\":\"sex\",\"status\":true,\"desc\":\"性别字典\",\"sysDictionaryDetails\":null},{\"ID\":3,\"CreatedAt\":\"2020-07-05T15:27:31+08:00\",\"UpdatedAt\":\"2020-07-05T15:27:31+08:00\",\"DeletedAt\":null,\"name\":\"数据库int类型\",\"type\":\"int\",\"status\":true,\"desc\":\"int类型对应的数据库类型\",\"sysDictionaryDetails\":null},{\"ID\":4,\"CreatedAt\":\"2020-07-05T15:33:07+08:00\",\"UpdatedAt\":\"2020-07-05T16:07:18+08:00\",\"DeletedAt\":null,\"name\":\"数据库时间日期类型\",\"type\":\"time.Time\",\"status\":true,\"desc\":\"数据库时间日期类型\",\"sysDictionaryDetails\":null},{\"ID\":5,\"CreatedAt\":\"2020-07-05T15:34:23+08:00\",\"UpdatedAt\":\"2020-07-05T15:52:45+08:00\",\"DeletedAt\":null,\"name\":\"数据库浮点型\",\"type\":\"float64\",\"status\":true,\"desc\":\"数据库浮点型\",\"sysDictionaryDetails\":null},{\"ID\":6,\"CreatedAt\":\"2020-07-05T15:35:05+08:00\",\"UpdatedAt\":\"2020-07-05T15:35:05+08:00\",\"DeletedAt\":null,\"name\":\"数据库字符串\",\"type\":\"string\",\"status\":true,\"desc\":\"数据库字符串\",\"sysDictionaryDetails\":null},{\"ID\":7,\"CreatedAt\":\"2020-07-05T15:36:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:36:48+08:00\",\"DeletedAt\":null,\"name\":\"数据库bool类型\",\"type\":\"bool\",\"status\":true,\"desc\":\"数据库bool类型\",\"sysDictionaryDetails\":null}],\"total\":6,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (26, '2020-08-16 20:16:34', '2020-08-16 20:16:34', NULL, '127.0.0.1', 'POST', '/user/getUserList', 200, 979400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":10}', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":10,\"CreatedAt\":\"2019-09-13T17:23:46+08:00\",\"UpdatedAt\":\"2020-06-26T21:17:50+08:00\",\"DeletedAt\":null,\"uuid\":\"ce0d6685-c15f-4126-a5b4-890bc9d2356d\",\"userName\":\"admin\",\"nickName\":\"超级管理员\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1571627762timg.jpg\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"888\"},{\"ID\":11,\"CreatedAt\":\"2019-09-13T17:27:29+08:00\",\"UpdatedAt\":\"2019-09-13T17:27:29+08:00\",\"DeletedAt\":null,\"uuid\":\"fd6ef79b-944c-4888-8377-abe2d2608858\",\"userName\":\"a303176530\",\"nickName\":\"QMPlusUser\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1572075907logo.png\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"9528\"}],\"total\":2,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (27, '2020-08-16 20:16:35', '2020-08-16 20:16:35', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 2915400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (28, '2020-08-16 20:16:38', '2020-08-16 20:16:38', NULL, '127.0.0.1', 'GET', '/sysDictionary/getSysDictionaryList', 200, 976400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":2,\"CreatedAt\":\"2020-06-24T20:44:00+08:00\",\"UpdatedAt\":\"2020-06-24T20:44:00+08:00\",\"DeletedAt\":null,\"name\":\"性别\",\"type\":\"sex\",\"status\":true,\"desc\":\"性别字典\",\"sysDictionaryDetails\":null},{\"ID\":3,\"CreatedAt\":\"2020-07-05T15:27:31+08:00\",\"UpdatedAt\":\"2020-07-05T15:27:31+08:00\",\"DeletedAt\":null,\"name\":\"数据库int类型\",\"type\":\"int\",\"status\":true,\"desc\":\"int类型对应的数据库类型\",\"sysDictionaryDetails\":null},{\"ID\":4,\"CreatedAt\":\"2020-07-05T15:33:07+08:00\",\"UpdatedAt\":\"2020-07-05T16:07:18+08:00\",\"DeletedAt\":null,\"name\":\"数据库时间日期类型\",\"type\":\"time.Time\",\"status\":true,\"desc\":\"数据库时间日期类型\",\"sysDictionaryDetails\":null},{\"ID\":5,\"CreatedAt\":\"2020-07-05T15:34:23+08:00\",\"UpdatedAt\":\"2020-07-05T15:52:45+08:00\",\"DeletedAt\":null,\"name\":\"数据库浮点型\",\"type\":\"float64\",\"status\":true,\"desc\":\"数据库浮点型\",\"sysDictionaryDetails\":null},{\"ID\":6,\"CreatedAt\":\"2020-07-05T15:35:05+08:00\",\"UpdatedAt\":\"2020-07-05T15:35:05+08:00\",\"DeletedAt\":null,\"name\":\"数据库字符串\",\"type\":\"string\",\"status\":true,\"desc\":\"数据库字符串\",\"sysDictionaryDetails\":null},{\"ID\":7,\"CreatedAt\":\"2020-07-05T15:36:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:36:48+08:00\",\"DeletedAt\":null,\"name\":\"数据库bool类型\",\"type\":\"bool\",\"status\":true,\"desc\":\"数据库bool类型\",\"sysDictionaryDetails\":null}],\"total\":6,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (29, '2020-08-16 20:16:42', '2020-08-16 20:16:42', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 2927400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (30, '2020-08-16 20:16:42', '2020-08-16 20:16:42', NULL, '127.0.0.1', 'POST', '/user/getUserList', 200, 975900, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":10}', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":10,\"CreatedAt\":\"2019-09-13T17:23:46+08:00\",\"UpdatedAt\":\"2020-06-26T21:17:50+08:00\",\"DeletedAt\":null,\"uuid\":\"ce0d6685-c15f-4126-a5b4-890bc9d2356d\",\"userName\":\"admin\",\"nickName\":\"超级管理员\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1571627762timg.jpg\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"888\"},{\"ID\":11,\"CreatedAt\":\"2019-09-13T17:27:29+08:00\",\"UpdatedAt\":\"2019-09-13T17:27:29+08:00\",\"DeletedAt\":null,\"uuid\":\"fd6ef79b-944c-4888-8377-abe2d2608858\",\"userName\":\"a303176530\",\"nickName\":\"QMPlusUser\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1572075907logo.png\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"9528\"}],\"total\":2,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (31, '2020-08-16 20:16:42', '2020-08-16 20:16:42', NULL, '127.0.0.1', 'GET', '/sysDictionary/getSysDictionaryList', 200, 976400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":2,\"CreatedAt\":\"2020-06-24T20:44:00+08:00\",\"UpdatedAt\":\"2020-06-24T20:44:00+08:00\",\"DeletedAt\":null,\"name\":\"性别\",\"type\":\"sex\",\"status\":true,\"desc\":\"性别字典\",\"sysDictionaryDetails\":null},{\"ID\":3,\"CreatedAt\":\"2020-07-05T15:27:31+08:00\",\"UpdatedAt\":\"2020-07-05T15:27:31+08:00\",\"DeletedAt\":null,\"name\":\"数据库int类型\",\"type\":\"int\",\"status\":true,\"desc\":\"int类型对应的数据库类型\",\"sysDictionaryDetails\":null},{\"ID\":4,\"CreatedAt\":\"2020-07-05T15:33:07+08:00\",\"UpdatedAt\":\"2020-07-05T16:07:18+08:00\",\"DeletedAt\":null,\"name\":\"数据库时间日期类型\",\"type\":\"time.Time\",\"status\":true,\"desc\":\"数据库时间日期类型\",\"sysDictionaryDetails\":null},{\"ID\":5,\"CreatedAt\":\"2020-07-05T15:34:23+08:00\",\"UpdatedAt\":\"2020-07-05T15:52:45+08:00\",\"DeletedAt\":null,\"name\":\"数据库浮点型\",\"type\":\"float64\",\"status\":true,\"desc\":\"数据库浮点型\",\"sysDictionaryDetails\":null},{\"ID\":6,\"CreatedAt\":\"2020-07-05T15:35:05+08:00\",\"UpdatedAt\":\"2020-07-05T15:35:05+08:00\",\"DeletedAt\":null,\"name\":\"数据库字符串\",\"type\":\"string\",\"status\":true,\"desc\":\"数据库字符串\",\"sysDictionaryDetails\":null},{\"ID\":7,\"CreatedAt\":\"2020-07-05T15:36:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:36:48+08:00\",\"DeletedAt\":null,\"name\":\"数据库bool类型\",\"type\":\"bool\",\"status\":true,\"desc\":\"数据库bool类型\",\"sysDictionaryDetails\":null}],\"total\":6,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (32, '2020-08-16 20:16:44', '2020-08-16 20:16:44', NULL, '127.0.0.1', 'GET', '/sysDictionary/getSysDictionaryList', 200, 989800, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":2,\"CreatedAt\":\"2020-06-24T20:44:00+08:00\",\"UpdatedAt\":\"2020-06-24T20:44:00+08:00\",\"DeletedAt\":null,\"name\":\"性别\",\"type\":\"sex\",\"status\":true,\"desc\":\"性别字典\",\"sysDictionaryDetails\":null},{\"ID\":3,\"CreatedAt\":\"2020-07-05T15:27:31+08:00\",\"UpdatedAt\":\"2020-07-05T15:27:31+08:00\",\"DeletedAt\":null,\"name\":\"数据库int类型\",\"type\":\"int\",\"status\":true,\"desc\":\"int类型对应的数据库类型\",\"sysDictionaryDetails\":null},{\"ID\":4,\"CreatedAt\":\"2020-07-05T15:33:07+08:00\",\"UpdatedAt\":\"2020-07-05T16:07:18+08:00\",\"DeletedAt\":null,\"name\":\"数据库时间日期类型\",\"type\":\"time.Time\",\"status\":true,\"desc\":\"数据库时间日期类型\",\"sysDictionaryDetails\":null},{\"ID\":5,\"CreatedAt\":\"2020-07-05T15:34:23+08:00\",\"UpdatedAt\":\"2020-07-05T15:52:45+08:00\",\"DeletedAt\":null,\"name\":\"数据库浮点型\",\"type\":\"float64\",\"status\":true,\"desc\":\"数据库浮点型\",\"sysDictionaryDetails\":null},{\"ID\":6,\"CreatedAt\":\"2020-07-05T15:35:05+08:00\",\"UpdatedAt\":\"2020-07-05T15:35:05+08:00\",\"DeletedAt\":null,\"name\":\"数据库字符串\",\"type\":\"string\",\"status\":true,\"desc\":\"数据库字符串\",\"sysDictionaryDetails\":null},{\"ID\":7,\"CreatedAt\":\"2020-07-05T15:36:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:36:48+08:00\",\"DeletedAt\":null,\"name\":\"数据库bool类型\",\"type\":\"bool\",\"status\":true,\"desc\":\"数据库bool类型\",\"sysDictionaryDetails\":null}],\"total\":6,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (33, '2020-08-16 20:16:45', '2020-08-16 20:16:45', NULL, '127.0.0.1', 'POST', '/user/getUserList', 200, 982100, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":10}', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":10,\"CreatedAt\":\"2019-09-13T17:23:46+08:00\",\"UpdatedAt\":\"2020-06-26T21:17:50+08:00\",\"DeletedAt\":null,\"uuid\":\"ce0d6685-c15f-4126-a5b4-890bc9d2356d\",\"userName\":\"admin\",\"nickName\":\"超级管理员\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1571627762timg.jpg\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"888\"},{\"ID\":11,\"CreatedAt\":\"2019-09-13T17:27:29+08:00\",\"UpdatedAt\":\"2019-09-13T17:27:29+08:00\",\"DeletedAt\":null,\"uuid\":\"fd6ef79b-944c-4888-8377-abe2d2608858\",\"userName\":\"a303176530\",\"nickName\":\"QMPlusUser\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1572075907logo.png\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"9528\"}],\"total\":2,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (34, '2020-08-16 20:16:45', '2020-08-16 20:16:45', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 2928900, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (35, '2020-08-16 20:20:36', '2020-08-16 20:20:36', NULL, '127.0.0.1', 'POST', '/user/getUserList', 200, 977200, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":10}', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":10,\"CreatedAt\":\"2019-09-13T17:23:46+08:00\",\"UpdatedAt\":\"2020-06-26T21:17:50+08:00\",\"DeletedAt\":null,\"uuid\":\"ce0d6685-c15f-4126-a5b4-890bc9d2356d\",\"userName\":\"admin\",\"nickName\":\"超级管理员\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1571627762timg.jpg\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"888\"},{\"ID\":11,\"CreatedAt\":\"2019-09-13T17:27:29+08:00\",\"UpdatedAt\":\"2019-09-13T17:27:29+08:00\",\"DeletedAt\":null,\"uuid\":\"fd6ef79b-944c-4888-8377-abe2d2608858\",\"userName\":\"a303176530\",\"nickName\":\"QMPlusUser\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1572075907logo.png\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"9528\"}],\"total\":2,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (36, '2020-08-16 20:20:36', '2020-08-16 20:20:36', '2020-08-22 16:15:39', '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 2929500, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (37, '2020-08-16 20:27:22', '2020-08-16 20:27:22', NULL, '127.0.0.1', 'GET', '/customer/customerList', 200, 2928900, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":1,\"CreatedAt\":\"2020-02-25T18:01:48+08:00\",\"UpdatedAt\":\"2020-04-10T12:29:29+08:00\",\"DeletedAt\":null,\"customerName\":\"测试客户\",\"customerPhoneData\":\"1761111111\",\"sysUserId\":10,\"sysUserAuthorityID\":\"888\",\"sysUser\":{\"ID\":10,\"CreatedAt\":\"2019-09-13T17:23:46+08:00\",\"UpdatedAt\":\"2020-06-26T21:17:50+08:00\",\"DeletedAt\":null,\"uuid\":\"ce0d6685-c15f-4126-a5b4-890bc9d2356d\",\"userName\":\"admin\",\"nickName\":\"超级管理员\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1571627762timg.jpg\",\"authority\":{\"CreatedAt\":\"0001-01-01T00:00:00Z\",\"UpdatedAt\":\"0001-01-01T00:00:00Z\",\"DeletedAt\":null,\"authorityId\":\"\",\"authorityName\":\"\",\"parentId\":\"\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"888\"}}],\"total\":1,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (38, '2020-08-22 16:15:49', '2020-08-22 16:15:49', NULL, '127.0.0.1', 'GET', '/autoCode/getDB', 200, 4880300, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"dbs\":[{\"database\":\"information_schema\"},{\"database\":\"demo\"},{\"database\":\"ginclass\"},{\"database\":\"history\"},{\"database\":\"mysql\"},{\"database\":\"pandora\"},{\"database\":\"performance_schema\"},{\"database\":\"qmplus\"},{\"database\":\"qmplus1\"},{\"database\":\"sakila\"},{\"database\":\"tanbao\"},{\"database\":\"test\"},{\"database\":\"world\"},{\"database\":\"zhongzerong\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (39, '2020-08-22 16:15:49', '2020-08-22 16:15:49', NULL, '127.0.0.1', 'GET', '/sysDictionary/findSysDictionary', 200, 4886400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"resysDictionary\":{\"ID\":6,\"CreatedAt\":\"2020-07-05T15:35:05+08:00\",\"UpdatedAt\":\"2020-07-05T15:35:05+08:00\",\"DeletedAt\":null,\"name\":\"数据库字符串\",\"type\":\"string\",\"status\":true,\"desc\":\"数据库字符串\",\"sysDictionaryDetails\":[{\"ID\":28,\"CreatedAt\":\"2020-07-05T15:53:25+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:25+08:00\",\"DeletedAt\":null,\"label\":\"char\",\"value\":0,\"status\":true,\"sort\":0,\"sysDictionaryID\":6},{\"ID\":29,\"CreatedAt\":\"2020-07-05T15:53:29+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:29+08:00\",\"DeletedAt\":null,\"label\":\"varchar\",\"value\":1,\"status\":true,\"sort\":1,\"sysDictionaryID\":6},{\"ID\":30,\"CreatedAt\":\"2020-07-05T15:53:35+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:35+08:00\",\"DeletedAt\":null,\"label\":\"tinyblob\",\"value\":2,\"status\":true,\"sort\":2,\"sysDictionaryID\":6},{\"ID\":31,\"CreatedAt\":\"2020-07-05T15:53:40+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:40+08:00\",\"DeletedAt\":null,\"label\":\"tinytext\",\"value\":3,\"status\":true,\"sort\":3,\"sysDictionaryID\":6},{\"ID\":32,\"CreatedAt\":\"2020-07-05T15:53:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:48+08:00\",\"DeletedAt\":null,\"label\":\"text\",\"value\":4,\"status\":true,\"sort\":4,\"sysDictionaryID\":6},{\"ID\":33,\"CreatedAt\":\"2020-07-05T15:53:55+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:55+08:00\",\"DeletedAt\":null,\"label\":\"blob\",\"value\":5,\"status\":true,\"sort\":5,\"sysDictionaryID\":6},{\"ID\":34,\"CreatedAt\":\"2020-07-05T15:54:02+08:00\",\"UpdatedAt\":\"2020-07-05T15:54:02+08:00\",\"DeletedAt\":null,\"label\":\"mediumblob\",\"value\":6,\"status\":true,\"sort\":6,\"sysDictionaryID\":6},{\"ID\":35,\"CreatedAt\":\"2020-07-05T15:54:09+08:00\",\"UpdatedAt\":\"2020-07-05T15:54:09+08:00\",\"DeletedAt\":null,\"label\":\"mediumtext\",\"value\":7,\"status\":true,\"sort\":7,\"sysDictionaryID\":6},{\"ID\":36,\"CreatedAt\":\"2020-07-05T15:54:16+08:00\",\"UpdatedAt\":\"2020-07-05T15:54:16+08:00\",\"DeletedAt\":null,\"label\":\"longblob\",\"value\":8,\"status\":true,\"sort\":8,\"sysDictionaryID\":6},{\"ID\":37,\"CreatedAt\":\"2020-07-05T15:54:24+08:00\",\"UpdatedAt\":\"2020-07-05T15:54:24+08:00\",\"DeletedAt\":null,\"label\":\"longtext\",\"value\":9,\"status\":true,\"sort\":9,\"sysDictionaryID\":6}]}},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (40, '2020-08-22 16:15:49', '2020-08-22 16:15:49', NULL, '127.0.0.1', 'GET', '/sysDictionary/findSysDictionary', 200, 977000, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"resysDictionary\":{\"ID\":5,\"CreatedAt\":\"2020-07-05T15:34:23+08:00\",\"UpdatedAt\":\"2020-07-05T15:52:45+08:00\",\"DeletedAt\":null,\"name\":\"数据库浮点型\",\"type\":\"float64\",\"status\":true,\"desc\":\"数据库浮点型\",\"sysDictionaryDetails\":[{\"ID\":24,\"CreatedAt\":\"2020-07-05T15:34:30+08:00\",\"UpdatedAt\":\"2020-07-05T15:34:30+08:00\",\"DeletedAt\":null,\"label\":\"float\",\"value\":0,\"status\":true,\"sort\":0,\"sysDictionaryID\":5},{\"ID\":25,\"CreatedAt\":\"2020-07-05T15:34:35+08:00\",\"UpdatedAt\":\"2020-07-05T15:34:35+08:00\",\"DeletedAt\":null,\"label\":\"double\",\"value\":1,\"status\":true,\"sort\":1,\"sysDictionaryID\":5},{\"ID\":26,\"CreatedAt\":\"2020-07-05T15:34:41+08:00\",\"UpdatedAt\":\"2020-07-05T15:34:41+08:00\",\"DeletedAt\":null,\"label\":\"decimal\",\"value\":2,\"status\":true,\"sort\":2,\"sysDictionaryID\":5}]}},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (41, '2020-08-22 16:15:49', '2020-08-22 16:15:49', NULL, '127.0.0.1', 'GET', '/sysDictionary/findSysDictionary', 200, 977000, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"resysDictionary\":{\"ID\":7,\"CreatedAt\":\"2020-07-05T15:36:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:36:48+08:00\",\"DeletedAt\":null,\"name\":\"数据库bool类型\",\"type\":\"bool\",\"status\":true,\"desc\":\"数据库bool类型\",\"sysDictionaryDetails\":[{\"ID\":27,\"CreatedAt\":\"2020-07-05T15:37:45+08:00\",\"UpdatedAt\":\"2020-07-05T15:37:45+08:00\",\"DeletedAt\":null,\"label\":\"tinyint\",\"value\":0,\"status\":true,\"sort\":0,\"sysDictionaryID\":7}]}},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (42, '2020-08-22 16:15:49', '2020-08-22 16:15:49', NULL, '127.0.0.1', 'GET', '/sysDictionary/findSysDictionary', 200, 974500, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"resysDictionary\":{\"ID\":3,\"CreatedAt\":\"2020-07-05T15:27:31+08:00\",\"UpdatedAt\":\"2020-07-05T15:27:31+08:00\",\"DeletedAt\":null,\"name\":\"数据库int类型\",\"type\":\"int\",\"status\":true,\"desc\":\"int类型对应的数据库类型\",\"sysDictionaryDetails\":[{\"ID\":12,\"CreatedAt\":\"2020-07-05T15:31:41+08:00\",\"UpdatedAt\":\"2020-07-05T15:31:41+08:00\",\"DeletedAt\":null,\"label\":\"smallint\",\"value\":1,\"status\":true,\"sort\":1,\"sysDictionaryID\":3},{\"ID\":13,\"CreatedAt\":\"2020-07-05T15:31:52+08:00\",\"UpdatedAt\":\"2020-07-05T15:31:52+08:00\",\"DeletedAt\":null,\"label\":\"mediumint\",\"value\":2,\"status\":true,\"sort\":2,\"sysDictionaryID\":3},{\"ID\":14,\"CreatedAt\":\"2020-07-05T15:32:04+08:00\",\"UpdatedAt\":\"2020-07-05T15:32:04+08:00\",\"DeletedAt\":null,\"label\":\"int\",\"value\":3,\"status\":true,\"sort\":3,\"sysDictionaryID\":3},{\"ID\":15,\"CreatedAt\":\"2020-07-05T15:32:11+08:00\",\"UpdatedAt\":\"2020-07-05T15:32:11+08:00\",\"DeletedAt\":null,\"label\":\"bigint\",\"value\":4,\"status\":true,\"sort\":4,\"sysDictionaryID\":3}]}},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (43, '2020-08-22 16:15:49', '2020-08-22 16:15:49', NULL, '127.0.0.1', 'GET', '/sysDictionary/findSysDictionary', 200, 974500, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"resysDictionary\":{\"ID\":4,\"CreatedAt\":\"2020-07-05T15:33:07+08:00\",\"UpdatedAt\":\"2020-07-05T16:07:18+08:00\",\"DeletedAt\":null,\"name\":\"数据库时间日期类型\",\"type\":\"time.Time\",\"status\":true,\"desc\":\"数据库时间日期类型\",\"sysDictionaryDetails\":[{\"ID\":19,\"CreatedAt\":\"2020-07-05T15:33:16+08:00\",\"UpdatedAt\":\"2020-07-05T15:33:16+08:00\",\"DeletedAt\":null,\"label\":\"data\",\"value\":0,\"status\":true,\"sort\":0,\"sysDictionaryID\":4},{\"ID\":20,\"CreatedAt\":\"2020-07-05T15:33:21+08:00\",\"UpdatedAt\":\"2020-07-05T15:33:21+08:00\",\"DeletedAt\":null,\"label\":\"time\",\"value\":1,\"status\":true,\"sort\":1,\"sysDictionaryID\":4},{\"ID\":21,\"CreatedAt\":\"2020-07-05T15:33:25+08:00\",\"UpdatedAt\":\"2020-07-05T15:33:25+08:00\",\"DeletedAt\":null,\"label\":\"year\",\"value\":2,\"status\":true,\"sort\":2,\"sysDictionaryID\":4},{\"ID\":22,\"CreatedAt\":\"2020-07-05T15:33:35+08:00\",\"UpdatedAt\":\"2020-07-05T15:33:35+08:00\",\"DeletedAt\":null,\"label\":\"datetime\",\"value\":3,\"status\":true,\"sort\":3,\"sysDictionaryID\":4},{\"ID\":23,\"CreatedAt\":\"2020-07-05T15:33:42+08:00\",\"UpdatedAt\":\"2020-07-05T15:33:42+08:00\",\"DeletedAt\":null,\"label\":\"timestamp\",\"value\":5,\"status\":true,\"sort\":5,\"sysDictionaryID\":4}]}},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (44, '2020-08-22 16:15:54', '2020-08-22 16:15:54', NULL, '127.0.0.1', 'GET', '/autoCode/getTables', 200, 1966500, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"tables\":[{\"tableName\":\"authority_menu\"},{\"tableName\":\"casbin_rule\"},{\"tableName\":\"exa_customers\"},{\"tableName\":\"exa_file_chunks\"},{\"tableName\":\"exa_file_upload_and_downloads\"},{\"tableName\":\"exa_files\"},{\"tableName\":\"examination_records\"},{\"tableName\":\"jwt_blacklists\"},{\"tableName\":\"personnels\"},{\"tableName\":\"records\"},{\"tableName\":\"sys_apis\"},{\"tableName\":\"sys_authorities\"},{\"tableName\":\"sys_authority_menus\"},{\"tableName\":\"sys_base_menus\"},{\"tableName\":\"sys_data_authority_id\"},{\"tableName\":\"sys_users\"},{\"tableName\":\"sys_workflow_step_infos\"},{\"tableName\":\"sys_workflows\"},{\"tableName\":\"test_paper_svg_nodes\"},{\"tableName\":\"test_papers\"},{\"tableName\":\"tools\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (45, '2020-08-22 16:15:56', '2020-08-22 16:15:56', NULL, '127.0.0.1', 'GET', '/autoCode/getColume', 200, 37101400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"columes\":[{\"columeName\":\"id\",\"dataType\":\"int\",\"dataTypeLong\":\"10\",\"columeComment\":\"\"},{\"columeName\":\"created_at\",\"dataType\":\"timestamp\",\"dataTypeLong\":\"\",\"columeComment\":\"\"},{\"columeName\":\"updated_at\",\"dataType\":\"timestamp\",\"dataTypeLong\":\"\",\"columeComment\":\"\"},{\"columeName\":\"deleted_at\",\"dataType\":\"timestamp\",\"dataTypeLong\":\"\",\"columeComment\":\"\"},{\"columeName\":\"customer_name\",\"dataType\":\"varchar\",\"dataTypeLong\":\"255\",\"columeComment\":\"\"},{\"columeName\":\"customer_phone_data\",\"dataType\":\"varchar\",\"dataTypeLong\":\"255\",\"columeComment\":\"\"},{\"columeName\":\"sys_user_id\",\"dataType\":\"int\",\"dataTypeLong\":\"10\",\"columeComment\":\"\"},{\"columeName\":\"sys_user_authority_id\",\"dataType\":\"varchar\",\"dataTypeLong\":\"255\",\"columeComment\":\"\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (46, '2020-08-22 16:15:58', '2020-08-22 16:15:58', NULL, '127.0.0.1', 'GET', '/sysDictionary/getSysDictionaryList', 200, 967900, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":2,\"CreatedAt\":\"2020-06-24T20:44:00+08:00\",\"UpdatedAt\":\"2020-06-24T20:44:00+08:00\",\"DeletedAt\":null,\"name\":\"性别\",\"type\":\"sex\",\"status\":true,\"desc\":\"性别字典\",\"sysDictionaryDetails\":null},{\"ID\":3,\"CreatedAt\":\"2020-07-05T15:27:31+08:00\",\"UpdatedAt\":\"2020-07-05T15:27:31+08:00\",\"DeletedAt\":null,\"name\":\"数据库int类型\",\"type\":\"int\",\"status\":true,\"desc\":\"int类型对应的数据库类型\",\"sysDictionaryDetails\":null},{\"ID\":4,\"CreatedAt\":\"2020-07-05T15:33:07+08:00\",\"UpdatedAt\":\"2020-07-05T16:07:18+08:00\",\"DeletedAt\":null,\"name\":\"数据库时间日期类型\",\"type\":\"time.Time\",\"status\":true,\"desc\":\"数据库时间日期类型\",\"sysDictionaryDetails\":null},{\"ID\":5,\"CreatedAt\":\"2020-07-05T15:34:23+08:00\",\"UpdatedAt\":\"2020-07-05T15:52:45+08:00\",\"DeletedAt\":null,\"name\":\"数据库浮点型\",\"type\":\"float64\",\"status\":true,\"desc\":\"数据库浮点型\",\"sysDictionaryDetails\":null},{\"ID\":6,\"CreatedAt\":\"2020-07-05T15:35:05+08:00\",\"UpdatedAt\":\"2020-07-05T15:35:05+08:00\",\"DeletedAt\":null,\"name\":\"数据库字符串\",\"type\":\"string\",\"status\":true,\"desc\":\"数据库字符串\",\"sysDictionaryDetails\":null},{\"ID\":7,\"CreatedAt\":\"2020-07-05T15:36:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:36:48+08:00\",\"DeletedAt\":null,\"name\":\"数据库bool类型\",\"type\":\"bool\",\"status\":true,\"desc\":\"数据库bool类型\",\"sysDictionaryDetails\":null}],\"total\":6,\"page\":1,\"pageSize\":999999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (47, '2020-08-23 15:24:29', '2020-08-23 15:24:29', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 6834600, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (48, '2020-08-23 15:24:31', '2020-08-23 15:24:31', NULL, '127.0.0.1', 'POST', '/casbin/getPolicyPathByAuthorityId', 200, 10739600, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"authorityId\":\"888\"}', 10, '{\"code\":0,\"data\":{\"paths\":[{\"path\":\"/base/login\",\"method\":\"POST\"},{\"path\":\"/base/register\",\"method\":\"POST\"},{\"path\":\"/api/createApi\",\"method\":\"POST\"},{\"path\":\"/api/getApiList\",\"method\":\"POST\"},{\"path\":\"/api/getApiById\",\"method\":\"POST\"},{\"path\":\"/api/deleteApi\",\"method\":\"POST\"},{\"path\":\"/api/updateApi\",\"method\":\"POST\"},{\"path\":\"/api/getAllApis\",\"method\":\"POST\"},{\"path\":\"/authority/createAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/deleteAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/getAuthorityList\",\"method\":\"POST\"},{\"path\":\"/authority/setDataAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/updateAuthority\",\"method\":\"PUT\"},{\"path\":\"/authority/copyAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuList\",\"method\":\"POST\"},{\"path\":\"/menu/addBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuTree\",\"method\":\"POST\"},{\"path\":\"/menu/addMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/deleteBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/updateBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuById\",\"method\":\"POST\"},{\"path\":\"/user/changePassword\",\"method\":\"POST\"},{\"path\":\"/user/uploadHeaderImg\",\"method\":\"POST\"},{\"path\":\"/user/getInfoList\",\"method\":\"POST\"},{\"path\":\"/user/getUserList\",\"method\":\"POST\"},{\"path\":\"/user/setUserAuthority\",\"method\":\"POST\"},{\"path\":\"/user/deleteUser\",\"method\":\"DELETE\"},{\"path\":\"/fileUploadAndDownload/upload\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/getFileList\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/deleteFile\",\"method\":\"POST\"},{\"path\":\"/casbin/updateCasbin\",\"method\":\"POST\"},{\"path\":\"/casbin/getPolicyPathByAuthorityId\",\"method\":\"POST\"},{\"path\":\"/casbin/casbinTest/:pathParam\",\"method\":\"GET\"},{\"path\":\"/jwt/jsonInBlacklist\",\"method\":\"POST\"},{\"path\":\"/system/getSystemConfig\",\"method\":\"POST\"},{\"path\":\"/system/setSystemConfig\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"PUT\"},{\"path\":\"/customer/customer\",\"method\":\"DELETE\"},{\"path\":\"/customer/customer\",\"method\":\"GET\"},{\"path\":\"/customer/customerList\",\"method\":\"GET\"},{\"path\":\"/autoCode/createTemp\",\"method\":\"POST\"},{\"path\":\"/autoCode/getTables\",\"method\":\"GET\"},{\"path\":\"/autoCode/getDB\",\"method\":\"GET\"},{\"path\":\"/autoCode/getColume\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/createSysDictionaryDetail\",\"method\":\"POST\"},{\"path\":\"/sysDictionaryDetail/deleteSysDictionaryDetail\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionaryDetail/updateSysDictionaryDetail\",\"method\":\"PUT\"},{\"path\":\"/sysDictionaryDetail/findSysDictionaryDetail\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/getSysDictionaryDetailList\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/createSysDictionary\",\"method\":\"POST\"},{\"path\":\"/sysDictionary/deleteSysDictionary\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionary/updateSysDictionary\",\"method\":\"PUT\"},{\"path\":\"/sysDictionary/findSysDictionary\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/getSysDictionaryList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/createSysOperationRecord\",\"method\":\"POST\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecord\",\"method\":\"DELETE\"},{\"path\":\"/sysOperationRecord/updateSysOperationRecord\",\"method\":\"PUT\"},{\"path\":\"/sysOperationRecord/findSysOperationRecord\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/getSysOperationRecordList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecordByIds\",\"method\":\"DELETE\"},{\"path\":\"/simpleUploader/upload\",\"method\":\"POST\"},{\"path\":\"/simpleUploader/checkFileMd5\",\"method\":\"GET\"},{\"path\":\"/simpleUploader/mergeFileMd5\",\"method\":\"GET\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (49, '2020-08-23 15:24:37', '2020-08-23 15:24:37', NULL, '127.0.0.1', 'POST', '/casbin/getPolicyPathByAuthorityId', 200, 6822700, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"authorityId\":\"9528\"}', 10, '{\"code\":0,\"data\":{\"paths\":[{\"path\":\"/base/login\",\"method\":\"POST\"},{\"path\":\"/base/register\",\"method\":\"POST\"},{\"path\":\"/api/createApi\",\"method\":\"POST\"},{\"path\":\"/api/getApiList\",\"method\":\"POST\"},{\"path\":\"/api/getApiById\",\"method\":\"POST\"},{\"path\":\"/api/deleteApi\",\"method\":\"POST\"},{\"path\":\"/api/updateApi\",\"method\":\"POST\"},{\"path\":\"/api/getAllApis\",\"method\":\"POST\"},{\"path\":\"/authority/createAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/deleteAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/getAuthorityList\",\"method\":\"POST\"},{\"path\":\"/authority/setDataAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuList\",\"method\":\"POST\"},{\"path\":\"/menu/addBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuTree\",\"method\":\"POST\"},{\"path\":\"/menu/addMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/deleteBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/updateBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuById\",\"method\":\"POST\"},{\"path\":\"/user/changePassword\",\"method\":\"POST\"},{\"path\":\"/user/uploadHeaderImg\",\"method\":\"POST\"},{\"path\":\"/user/getInfoList\",\"method\":\"POST\"},{\"path\":\"/user/getUserList\",\"method\":\"POST\"},{\"path\":\"/user/setUserAuthority\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/upload\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/getFileList\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/deleteFile\",\"method\":\"POST\"},{\"path\":\"/casbin/updateCasbin\",\"method\":\"POST\"},{\"path\":\"/casbin/getPolicyPathByAuthorityId\",\"method\":\"POST\"},{\"path\":\"/jwt/jsonInBlacklist\",\"method\":\"POST\"},{\"path\":\"/system/getSystemConfig\",\"method\":\"POST\"},{\"path\":\"/system/setSystemConfig\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"PUT\"},{\"path\":\"/customer/customer\",\"method\":\"DELETE\"},{\"path\":\"/customer/customer\",\"method\":\"GET\"},{\"path\":\"/customer/customerList\",\"method\":\"GET\"},{\"path\":\"/autoCode/createTemp\",\"method\":\"POST\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (50, '2020-08-23 15:24:42', '2020-08-23 15:24:42', NULL, '127.0.0.1', 'POST', '/casbin/getPolicyPathByAuthorityId', 200, 5871700, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"authorityId\":\"8881\"}', 10, '{\"code\":0,\"data\":{\"paths\":[{\"path\":\"/base/login\",\"method\":\"POST\"},{\"path\":\"/base/register\",\"method\":\"POST\"},{\"path\":\"/api/createApi\",\"method\":\"POST\"},{\"path\":\"/api/getApiList\",\"method\":\"POST\"},{\"path\":\"/api/getApiById\",\"method\":\"POST\"},{\"path\":\"/api/deleteApi\",\"method\":\"POST\"},{\"path\":\"/api/updateApi\",\"method\":\"POST\"},{\"path\":\"/api/getAllApis\",\"method\":\"POST\"},{\"path\":\"/authority/createAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/deleteAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/getAuthorityList\",\"method\":\"POST\"},{\"path\":\"/authority/setDataAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuList\",\"method\":\"POST\"},{\"path\":\"/menu/addBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuTree\",\"method\":\"POST\"},{\"path\":\"/menu/addMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/deleteBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/updateBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuById\",\"method\":\"POST\"},{\"path\":\"/user/changePassword\",\"method\":\"POST\"},{\"path\":\"/user/uploadHeaderImg\",\"method\":\"POST\"},{\"path\":\"/user/getInfoList\",\"method\":\"POST\"},{\"path\":\"/user/getUserList\",\"method\":\"POST\"},{\"path\":\"/user/setUserAuthority\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/upload\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/getFileList\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/deleteFile\",\"method\":\"POST\"},{\"path\":\"/casbin/updateCasbin\",\"method\":\"POST\"},{\"path\":\"/casbin/getPolicyPathByAuthorityId\",\"method\":\"POST\"},{\"path\":\"/jwt/jsonInBlacklist\",\"method\":\"POST\"},{\"path\":\"/system/getSystemConfig\",\"method\":\"POST\"},{\"path\":\"/system/setSystemConfig\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"PUT\"},{\"path\":\"/customer/customer\",\"method\":\"DELETE\"},{\"path\":\"/customer/customer\",\"method\":\"GET\"},{\"path\":\"/customer/customerList\",\"method\":\"GET\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (51, '2020-08-23 15:33:35', '2020-08-23 15:33:35', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 13670500, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":7,\"data\":{},\"msg\":\"获取数据失败,Error 1146: Table \'qmplus.sys_data_authority_id\' doesn\'t exist\"}'); -INSERT INTO `sys_operation_records` VALUES (52, '2020-08-23 15:34:07', '2020-08-23 15:34:07', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 4882400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":7,\"data\":{},\"msg\":\"获取数据失败,Error 1054: Unknown column \'sys_data_authority_id.data_authority_id\' in \'on clause\'\"}'); -INSERT INTO `sys_operation_records` VALUES (53, '2020-08-23 15:35:01', '2020-08-23 15:35:01', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 4879100, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (54, '2020-08-23 15:35:03', '2020-08-23 15:35:03', NULL, '127.0.0.1', 'POST', '/casbin/getPolicyPathByAuthorityId', 200, 9763900, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"authorityId\":\"888\"}', 10, '{\"code\":0,\"data\":{\"paths\":[{\"path\":\"/base/login\",\"method\":\"POST\"},{\"path\":\"/base/register\",\"method\":\"POST\"},{\"path\":\"/api/createApi\",\"method\":\"POST\"},{\"path\":\"/api/getApiList\",\"method\":\"POST\"},{\"path\":\"/api/getApiById\",\"method\":\"POST\"},{\"path\":\"/api/deleteApi\",\"method\":\"POST\"},{\"path\":\"/api/updateApi\",\"method\":\"POST\"},{\"path\":\"/api/getAllApis\",\"method\":\"POST\"},{\"path\":\"/authority/createAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/deleteAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/getAuthorityList\",\"method\":\"POST\"},{\"path\":\"/authority/setDataAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/updateAuthority\",\"method\":\"PUT\"},{\"path\":\"/authority/copyAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuList\",\"method\":\"POST\"},{\"path\":\"/menu/addBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuTree\",\"method\":\"POST\"},{\"path\":\"/menu/addMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/deleteBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/updateBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuById\",\"method\":\"POST\"},{\"path\":\"/user/changePassword\",\"method\":\"POST\"},{\"path\":\"/user/uploadHeaderImg\",\"method\":\"POST\"},{\"path\":\"/user/getInfoList\",\"method\":\"POST\"},{\"path\":\"/user/getUserList\",\"method\":\"POST\"},{\"path\":\"/user/setUserAuthority\",\"method\":\"POST\"},{\"path\":\"/user/deleteUser\",\"method\":\"DELETE\"},{\"path\":\"/fileUploadAndDownload/upload\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/getFileList\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/deleteFile\",\"method\":\"POST\"},{\"path\":\"/casbin/updateCasbin\",\"method\":\"POST\"},{\"path\":\"/casbin/getPolicyPathByAuthorityId\",\"method\":\"POST\"},{\"path\":\"/casbin/casbinTest/:pathParam\",\"method\":\"GET\"},{\"path\":\"/jwt/jsonInBlacklist\",\"method\":\"POST\"},{\"path\":\"/system/getSystemConfig\",\"method\":\"POST\"},{\"path\":\"/system/setSystemConfig\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"PUT\"},{\"path\":\"/customer/customer\",\"method\":\"DELETE\"},{\"path\":\"/customer/customer\",\"method\":\"GET\"},{\"path\":\"/customer/customerList\",\"method\":\"GET\"},{\"path\":\"/autoCode/createTemp\",\"method\":\"POST\"},{\"path\":\"/autoCode/getTables\",\"method\":\"GET\"},{\"path\":\"/autoCode/getDB\",\"method\":\"GET\"},{\"path\":\"/autoCode/getColume\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/createSysDictionaryDetail\",\"method\":\"POST\"},{\"path\":\"/sysDictionaryDetail/deleteSysDictionaryDetail\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionaryDetail/updateSysDictionaryDetail\",\"method\":\"PUT\"},{\"path\":\"/sysDictionaryDetail/findSysDictionaryDetail\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/getSysDictionaryDetailList\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/createSysDictionary\",\"method\":\"POST\"},{\"path\":\"/sysDictionary/deleteSysDictionary\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionary/updateSysDictionary\",\"method\":\"PUT\"},{\"path\":\"/sysDictionary/findSysDictionary\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/getSysDictionaryList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/createSysOperationRecord\",\"method\":\"POST\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecord\",\"method\":\"DELETE\"},{\"path\":\"/sysOperationRecord/updateSysOperationRecord\",\"method\":\"PUT\"},{\"path\":\"/sysOperationRecord/findSysOperationRecord\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/getSysOperationRecordList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecordByIds\",\"method\":\"DELETE\"},{\"path\":\"/simpleUploader/upload\",\"method\":\"POST\"},{\"path\":\"/simpleUploader/checkFileMd5\",\"method\":\"GET\"},{\"path\":\"/simpleUploader/mergeFileMd5\",\"method\":\"GET\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (55, '2020-08-23 15:36:16', '2020-08-23 15:36:16', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 3896900, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (56, '2020-08-23 15:36:18', '2020-08-23 15:36:18', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 3906500, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (57, '2020-08-23 15:36:29', '2020-08-23 15:36:29', NULL, '127.0.0.1', 'POST', '/casbin/getPolicyPathByAuthorityId', 200, 7810000, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"authorityId\":\"888\"}', 10, '{\"code\":0,\"data\":{\"paths\":[{\"path\":\"/base/login\",\"method\":\"POST\"},{\"path\":\"/base/register\",\"method\":\"POST\"},{\"path\":\"/api/createApi\",\"method\":\"POST\"},{\"path\":\"/api/getApiList\",\"method\":\"POST\"},{\"path\":\"/api/getApiById\",\"method\":\"POST\"},{\"path\":\"/api/deleteApi\",\"method\":\"POST\"},{\"path\":\"/api/updateApi\",\"method\":\"POST\"},{\"path\":\"/api/getAllApis\",\"method\":\"POST\"},{\"path\":\"/authority/createAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/deleteAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/getAuthorityList\",\"method\":\"POST\"},{\"path\":\"/authority/setDataAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/updateAuthority\",\"method\":\"PUT\"},{\"path\":\"/authority/copyAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuList\",\"method\":\"POST\"},{\"path\":\"/menu/addBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuTree\",\"method\":\"POST\"},{\"path\":\"/menu/addMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/deleteBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/updateBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuById\",\"method\":\"POST\"},{\"path\":\"/user/changePassword\",\"method\":\"POST\"},{\"path\":\"/user/uploadHeaderImg\",\"method\":\"POST\"},{\"path\":\"/user/getInfoList\",\"method\":\"POST\"},{\"path\":\"/user/getUserList\",\"method\":\"POST\"},{\"path\":\"/user/setUserAuthority\",\"method\":\"POST\"},{\"path\":\"/user/deleteUser\",\"method\":\"DELETE\"},{\"path\":\"/fileUploadAndDownload/upload\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/getFileList\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/deleteFile\",\"method\":\"POST\"},{\"path\":\"/casbin/updateCasbin\",\"method\":\"POST\"},{\"path\":\"/casbin/getPolicyPathByAuthorityId\",\"method\":\"POST\"},{\"path\":\"/casbin/casbinTest/:pathParam\",\"method\":\"GET\"},{\"path\":\"/jwt/jsonInBlacklist\",\"method\":\"POST\"},{\"path\":\"/system/getSystemConfig\",\"method\":\"POST\"},{\"path\":\"/system/setSystemConfig\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"PUT\"},{\"path\":\"/customer/customer\",\"method\":\"DELETE\"},{\"path\":\"/customer/customer\",\"method\":\"GET\"},{\"path\":\"/customer/customerList\",\"method\":\"GET\"},{\"path\":\"/autoCode/createTemp\",\"method\":\"POST\"},{\"path\":\"/autoCode/getTables\",\"method\":\"GET\"},{\"path\":\"/autoCode/getDB\",\"method\":\"GET\"},{\"path\":\"/autoCode/getColume\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/createSysDictionaryDetail\",\"method\":\"POST\"},{\"path\":\"/sysDictionaryDetail/deleteSysDictionaryDetail\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionaryDetail/updateSysDictionaryDetail\",\"method\":\"PUT\"},{\"path\":\"/sysDictionaryDetail/findSysDictionaryDetail\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/getSysDictionaryDetailList\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/createSysDictionary\",\"method\":\"POST\"},{\"path\":\"/sysDictionary/deleteSysDictionary\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionary/updateSysDictionary\",\"method\":\"PUT\"},{\"path\":\"/sysDictionary/findSysDictionary\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/getSysDictionaryList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/createSysOperationRecord\",\"method\":\"POST\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecord\",\"method\":\"DELETE\"},{\"path\":\"/sysOperationRecord/updateSysOperationRecord\",\"method\":\"PUT\"},{\"path\":\"/sysOperationRecord/findSysOperationRecord\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/getSysOperationRecordList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecordByIds\",\"method\":\"DELETE\"},{\"path\":\"/simpleUploader/upload\",\"method\":\"POST\"},{\"path\":\"/simpleUploader/checkFileMd5\",\"method\":\"GET\"},{\"path\":\"/simpleUploader/mergeFileMd5\",\"method\":\"GET\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (58, '2020-08-23 15:36:38', '2020-08-23 15:36:38', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 2928500, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (59, '2020-08-23 15:36:40', '2020-08-23 15:36:40', NULL, '127.0.0.1', 'POST', '/casbin/getPolicyPathByAuthorityId', 200, 7853400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"authorityId\":\"888\"}', 10, '{\"code\":0,\"data\":{\"paths\":[{\"path\":\"/base/login\",\"method\":\"POST\"},{\"path\":\"/base/register\",\"method\":\"POST\"},{\"path\":\"/api/createApi\",\"method\":\"POST\"},{\"path\":\"/api/getApiList\",\"method\":\"POST\"},{\"path\":\"/api/getApiById\",\"method\":\"POST\"},{\"path\":\"/api/deleteApi\",\"method\":\"POST\"},{\"path\":\"/api/updateApi\",\"method\":\"POST\"},{\"path\":\"/api/getAllApis\",\"method\":\"POST\"},{\"path\":\"/authority/createAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/deleteAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/getAuthorityList\",\"method\":\"POST\"},{\"path\":\"/authority/setDataAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/updateAuthority\",\"method\":\"PUT\"},{\"path\":\"/authority/copyAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuList\",\"method\":\"POST\"},{\"path\":\"/menu/addBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuTree\",\"method\":\"POST\"},{\"path\":\"/menu/addMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/deleteBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/updateBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuById\",\"method\":\"POST\"},{\"path\":\"/user/changePassword\",\"method\":\"POST\"},{\"path\":\"/user/uploadHeaderImg\",\"method\":\"POST\"},{\"path\":\"/user/getInfoList\",\"method\":\"POST\"},{\"path\":\"/user/getUserList\",\"method\":\"POST\"},{\"path\":\"/user/setUserAuthority\",\"method\":\"POST\"},{\"path\":\"/user/deleteUser\",\"method\":\"DELETE\"},{\"path\":\"/fileUploadAndDownload/upload\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/getFileList\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/deleteFile\",\"method\":\"POST\"},{\"path\":\"/casbin/updateCasbin\",\"method\":\"POST\"},{\"path\":\"/casbin/getPolicyPathByAuthorityId\",\"method\":\"POST\"},{\"path\":\"/casbin/casbinTest/:pathParam\",\"method\":\"GET\"},{\"path\":\"/jwt/jsonInBlacklist\",\"method\":\"POST\"},{\"path\":\"/system/getSystemConfig\",\"method\":\"POST\"},{\"path\":\"/system/setSystemConfig\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"PUT\"},{\"path\":\"/customer/customer\",\"method\":\"DELETE\"},{\"path\":\"/customer/customer\",\"method\":\"GET\"},{\"path\":\"/customer/customerList\",\"method\":\"GET\"},{\"path\":\"/autoCode/createTemp\",\"method\":\"POST\"},{\"path\":\"/autoCode/getTables\",\"method\":\"GET\"},{\"path\":\"/autoCode/getDB\",\"method\":\"GET\"},{\"path\":\"/autoCode/getColume\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/createSysDictionaryDetail\",\"method\":\"POST\"},{\"path\":\"/sysDictionaryDetail/deleteSysDictionaryDetail\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionaryDetail/updateSysDictionaryDetail\",\"method\":\"PUT\"},{\"path\":\"/sysDictionaryDetail/findSysDictionaryDetail\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/getSysDictionaryDetailList\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/createSysDictionary\",\"method\":\"POST\"},{\"path\":\"/sysDictionary/deleteSysDictionary\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionary/updateSysDictionary\",\"method\":\"PUT\"},{\"path\":\"/sysDictionary/findSysDictionary\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/getSysDictionaryList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/createSysOperationRecord\",\"method\":\"POST\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecord\",\"method\":\"DELETE\"},{\"path\":\"/sysOperationRecord/updateSysOperationRecord\",\"method\":\"PUT\"},{\"path\":\"/sysOperationRecord/findSysOperationRecord\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/getSysOperationRecordList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecordByIds\",\"method\":\"DELETE\"},{\"path\":\"/simpleUploader/upload\",\"method\":\"POST\"},{\"path\":\"/simpleUploader/checkFileMd5\",\"method\":\"GET\"},{\"path\":\"/simpleUploader/mergeFileMd5\",\"method\":\"GET\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (60, '2020-08-23 15:37:32', '2020-08-23 15:37:32', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 2927800, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (61, '2020-08-23 15:37:33', '2020-08-23 15:37:33', NULL, '127.0.0.1', 'POST', '/casbin/getPolicyPathByAuthorityId', 200, 7811900, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"authorityId\":\"888\"}', 10, '{\"code\":0,\"data\":{\"paths\":[{\"path\":\"/base/login\",\"method\":\"POST\"},{\"path\":\"/base/register\",\"method\":\"POST\"},{\"path\":\"/api/createApi\",\"method\":\"POST\"},{\"path\":\"/api/getApiList\",\"method\":\"POST\"},{\"path\":\"/api/getApiById\",\"method\":\"POST\"},{\"path\":\"/api/deleteApi\",\"method\":\"POST\"},{\"path\":\"/api/updateApi\",\"method\":\"POST\"},{\"path\":\"/api/getAllApis\",\"method\":\"POST\"},{\"path\":\"/authority/createAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/deleteAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/getAuthorityList\",\"method\":\"POST\"},{\"path\":\"/authority/setDataAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/updateAuthority\",\"method\":\"PUT\"},{\"path\":\"/authority/copyAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuList\",\"method\":\"POST\"},{\"path\":\"/menu/addBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuTree\",\"method\":\"POST\"},{\"path\":\"/menu/addMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/deleteBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/updateBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuById\",\"method\":\"POST\"},{\"path\":\"/user/changePassword\",\"method\":\"POST\"},{\"path\":\"/user/uploadHeaderImg\",\"method\":\"POST\"},{\"path\":\"/user/getInfoList\",\"method\":\"POST\"},{\"path\":\"/user/getUserList\",\"method\":\"POST\"},{\"path\":\"/user/setUserAuthority\",\"method\":\"POST\"},{\"path\":\"/user/deleteUser\",\"method\":\"DELETE\"},{\"path\":\"/fileUploadAndDownload/upload\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/getFileList\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/deleteFile\",\"method\":\"POST\"},{\"path\":\"/casbin/updateCasbin\",\"method\":\"POST\"},{\"path\":\"/casbin/getPolicyPathByAuthorityId\",\"method\":\"POST\"},{\"path\":\"/casbin/casbinTest/:pathParam\",\"method\":\"GET\"},{\"path\":\"/jwt/jsonInBlacklist\",\"method\":\"POST\"},{\"path\":\"/system/getSystemConfig\",\"method\":\"POST\"},{\"path\":\"/system/setSystemConfig\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"PUT\"},{\"path\":\"/customer/customer\",\"method\":\"DELETE\"},{\"path\":\"/customer/customer\",\"method\":\"GET\"},{\"path\":\"/customer/customerList\",\"method\":\"GET\"},{\"path\":\"/autoCode/createTemp\",\"method\":\"POST\"},{\"path\":\"/autoCode/getTables\",\"method\":\"GET\"},{\"path\":\"/autoCode/getDB\",\"method\":\"GET\"},{\"path\":\"/autoCode/getColume\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/createSysDictionaryDetail\",\"method\":\"POST\"},{\"path\":\"/sysDictionaryDetail/deleteSysDictionaryDetail\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionaryDetail/updateSysDictionaryDetail\",\"method\":\"PUT\"},{\"path\":\"/sysDictionaryDetail/findSysDictionaryDetail\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/getSysDictionaryDetailList\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/createSysDictionary\",\"method\":\"POST\"},{\"path\":\"/sysDictionary/deleteSysDictionary\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionary/updateSysDictionary\",\"method\":\"PUT\"},{\"path\":\"/sysDictionary/findSysDictionary\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/getSysDictionaryList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/createSysOperationRecord\",\"method\":\"POST\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecord\",\"method\":\"DELETE\"},{\"path\":\"/sysOperationRecord/updateSysOperationRecord\",\"method\":\"PUT\"},{\"path\":\"/sysOperationRecord/findSysOperationRecord\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/getSysOperationRecordList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecordByIds\",\"method\":\"DELETE\"},{\"path\":\"/simpleUploader/upload\",\"method\":\"POST\"},{\"path\":\"/simpleUploader/checkFileMd5\",\"method\":\"GET\"},{\"path\":\"/simpleUploader/mergeFileMd5\",\"method\":\"GET\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (62, '2020-08-23 15:37:37', '2020-08-23 15:37:37', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 3906200, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":[],\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (63, '2020-08-23 15:37:39', '2020-08-23 15:37:39', NULL, '127.0.0.1', 'POST', '/casbin/getPolicyPathByAuthorityId', 200, 6833600, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"authorityId\":\"888\"}', 10, '{\"code\":0,\"data\":{\"paths\":[{\"path\":\"/base/login\",\"method\":\"POST\"},{\"path\":\"/base/register\",\"method\":\"POST\"},{\"path\":\"/api/createApi\",\"method\":\"POST\"},{\"path\":\"/api/getApiList\",\"method\":\"POST\"},{\"path\":\"/api/getApiById\",\"method\":\"POST\"},{\"path\":\"/api/deleteApi\",\"method\":\"POST\"},{\"path\":\"/api/updateApi\",\"method\":\"POST\"},{\"path\":\"/api/getAllApis\",\"method\":\"POST\"},{\"path\":\"/authority/createAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/deleteAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/getAuthorityList\",\"method\":\"POST\"},{\"path\":\"/authority/setDataAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/updateAuthority\",\"method\":\"PUT\"},{\"path\":\"/authority/copyAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuList\",\"method\":\"POST\"},{\"path\":\"/menu/addBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuTree\",\"method\":\"POST\"},{\"path\":\"/menu/addMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/deleteBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/updateBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuById\",\"method\":\"POST\"},{\"path\":\"/user/changePassword\",\"method\":\"POST\"},{\"path\":\"/user/uploadHeaderImg\",\"method\":\"POST\"},{\"path\":\"/user/getInfoList\",\"method\":\"POST\"},{\"path\":\"/user/getUserList\",\"method\":\"POST\"},{\"path\":\"/user/setUserAuthority\",\"method\":\"POST\"},{\"path\":\"/user/deleteUser\",\"method\":\"DELETE\"},{\"path\":\"/fileUploadAndDownload/upload\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/getFileList\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/deleteFile\",\"method\":\"POST\"},{\"path\":\"/casbin/updateCasbin\",\"method\":\"POST\"},{\"path\":\"/casbin/getPolicyPathByAuthorityId\",\"method\":\"POST\"},{\"path\":\"/casbin/casbinTest/:pathParam\",\"method\":\"GET\"},{\"path\":\"/jwt/jsonInBlacklist\",\"method\":\"POST\"},{\"path\":\"/system/getSystemConfig\",\"method\":\"POST\"},{\"path\":\"/system/setSystemConfig\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"PUT\"},{\"path\":\"/customer/customer\",\"method\":\"DELETE\"},{\"path\":\"/customer/customer\",\"method\":\"GET\"},{\"path\":\"/customer/customerList\",\"method\":\"GET\"},{\"path\":\"/autoCode/createTemp\",\"method\":\"POST\"},{\"path\":\"/autoCode/getTables\",\"method\":\"GET\"},{\"path\":\"/autoCode/getDB\",\"method\":\"GET\"},{\"path\":\"/autoCode/getColume\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/createSysDictionaryDetail\",\"method\":\"POST\"},{\"path\":\"/sysDictionaryDetail/deleteSysDictionaryDetail\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionaryDetail/updateSysDictionaryDetail\",\"method\":\"PUT\"},{\"path\":\"/sysDictionaryDetail/findSysDictionaryDetail\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/getSysDictionaryDetailList\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/createSysDictionary\",\"method\":\"POST\"},{\"path\":\"/sysDictionary/deleteSysDictionary\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionary/updateSysDictionary\",\"method\":\"PUT\"},{\"path\":\"/sysDictionary/findSysDictionary\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/getSysDictionaryList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/createSysOperationRecord\",\"method\":\"POST\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecord\",\"method\":\"DELETE\"},{\"path\":\"/sysOperationRecord/updateSysOperationRecord\",\"method\":\"PUT\"},{\"path\":\"/sysOperationRecord/findSysOperationRecord\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/getSysOperationRecordList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecordByIds\",\"method\":\"DELETE\"},{\"path\":\"/simpleUploader/upload\",\"method\":\"POST\"},{\"path\":\"/simpleUploader/checkFileMd5\",\"method\":\"GET\"},{\"path\":\"/simpleUploader/mergeFileMd5\",\"method\":\"GET\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (64, '2020-08-23 15:39:25', '2020-08-23 15:39:25', NULL, '127.0.0.1', 'POST', '/casbin/getPolicyPathByAuthorityId', 200, 8778500, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"authorityId\":\"888\"}', 10, '{\"code\":0,\"data\":{\"paths\":[{\"path\":\"/base/login\",\"method\":\"POST\"},{\"path\":\"/base/register\",\"method\":\"POST\"},{\"path\":\"/api/createApi\",\"method\":\"POST\"},{\"path\":\"/api/getApiList\",\"method\":\"POST\"},{\"path\":\"/api/getApiById\",\"method\":\"POST\"},{\"path\":\"/api/deleteApi\",\"method\":\"POST\"},{\"path\":\"/api/updateApi\",\"method\":\"POST\"},{\"path\":\"/api/getAllApis\",\"method\":\"POST\"},{\"path\":\"/authority/createAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/deleteAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/getAuthorityList\",\"method\":\"POST\"},{\"path\":\"/authority/setDataAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/updateAuthority\",\"method\":\"PUT\"},{\"path\":\"/authority/copyAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuList\",\"method\":\"POST\"},{\"path\":\"/menu/addBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuTree\",\"method\":\"POST\"},{\"path\":\"/menu/addMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/deleteBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/updateBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuById\",\"method\":\"POST\"},{\"path\":\"/user/changePassword\",\"method\":\"POST\"},{\"path\":\"/user/uploadHeaderImg\",\"method\":\"POST\"},{\"path\":\"/user/getInfoList\",\"method\":\"POST\"},{\"path\":\"/user/getUserList\",\"method\":\"POST\"},{\"path\":\"/user/setUserAuthority\",\"method\":\"POST\"},{\"path\":\"/user/deleteUser\",\"method\":\"DELETE\"},{\"path\":\"/fileUploadAndDownload/upload\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/getFileList\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/deleteFile\",\"method\":\"POST\"},{\"path\":\"/casbin/updateCasbin\",\"method\":\"POST\"},{\"path\":\"/casbin/getPolicyPathByAuthorityId\",\"method\":\"POST\"},{\"path\":\"/casbin/casbinTest/:pathParam\",\"method\":\"GET\"},{\"path\":\"/jwt/jsonInBlacklist\",\"method\":\"POST\"},{\"path\":\"/system/getSystemConfig\",\"method\":\"POST\"},{\"path\":\"/system/setSystemConfig\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"PUT\"},{\"path\":\"/customer/customer\",\"method\":\"DELETE\"},{\"path\":\"/customer/customer\",\"method\":\"GET\"},{\"path\":\"/customer/customerList\",\"method\":\"GET\"},{\"path\":\"/autoCode/createTemp\",\"method\":\"POST\"},{\"path\":\"/autoCode/getTables\",\"method\":\"GET\"},{\"path\":\"/autoCode/getDB\",\"method\":\"GET\"},{\"path\":\"/autoCode/getColume\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/createSysDictionaryDetail\",\"method\":\"POST\"},{\"path\":\"/sysDictionaryDetail/deleteSysDictionaryDetail\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionaryDetail/updateSysDictionaryDetail\",\"method\":\"PUT\"},{\"path\":\"/sysDictionaryDetail/findSysDictionaryDetail\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/getSysDictionaryDetailList\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/createSysDictionary\",\"method\":\"POST\"},{\"path\":\"/sysDictionary/deleteSysDictionary\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionary/updateSysDictionary\",\"method\":\"PUT\"},{\"path\":\"/sysDictionary/findSysDictionary\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/getSysDictionaryList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/createSysOperationRecord\",\"method\":\"POST\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecord\",\"method\":\"DELETE\"},{\"path\":\"/sysOperationRecord/updateSysOperationRecord\",\"method\":\"PUT\"},{\"path\":\"/sysOperationRecord/findSysOperationRecord\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/getSysOperationRecordList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecordByIds\",\"method\":\"DELETE\"},{\"path\":\"/simpleUploader/upload\",\"method\":\"POST\"},{\"path\":\"/simpleUploader/checkFileMd5\",\"method\":\"GET\"},{\"path\":\"/simpleUploader/mergeFileMd5\",\"method\":\"GET\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (65, '2020-08-23 15:39:30', '2020-08-23 15:39:30', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 4878500, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (66, '2020-08-23 15:39:31', '2020-08-23 15:39:31', NULL, '127.0.0.1', 'POST', '/casbin/getPolicyPathByAuthorityId', 200, 10740500, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"authorityId\":\"888\"}', 10, '{\"code\":0,\"data\":{\"paths\":[{\"path\":\"/base/login\",\"method\":\"POST\"},{\"path\":\"/base/register\",\"method\":\"POST\"},{\"path\":\"/api/createApi\",\"method\":\"POST\"},{\"path\":\"/api/getApiList\",\"method\":\"POST\"},{\"path\":\"/api/getApiById\",\"method\":\"POST\"},{\"path\":\"/api/deleteApi\",\"method\":\"POST\"},{\"path\":\"/api/updateApi\",\"method\":\"POST\"},{\"path\":\"/api/getAllApis\",\"method\":\"POST\"},{\"path\":\"/authority/createAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/deleteAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/getAuthorityList\",\"method\":\"POST\"},{\"path\":\"/authority/setDataAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/updateAuthority\",\"method\":\"PUT\"},{\"path\":\"/authority/copyAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuList\",\"method\":\"POST\"},{\"path\":\"/menu/addBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuTree\",\"method\":\"POST\"},{\"path\":\"/menu/addMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/deleteBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/updateBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuById\",\"method\":\"POST\"},{\"path\":\"/user/changePassword\",\"method\":\"POST\"},{\"path\":\"/user/uploadHeaderImg\",\"method\":\"POST\"},{\"path\":\"/user/getInfoList\",\"method\":\"POST\"},{\"path\":\"/user/getUserList\",\"method\":\"POST\"},{\"path\":\"/user/setUserAuthority\",\"method\":\"POST\"},{\"path\":\"/user/deleteUser\",\"method\":\"DELETE\"},{\"path\":\"/fileUploadAndDownload/upload\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/getFileList\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/deleteFile\",\"method\":\"POST\"},{\"path\":\"/casbin/updateCasbin\",\"method\":\"POST\"},{\"path\":\"/casbin/getPolicyPathByAuthorityId\",\"method\":\"POST\"},{\"path\":\"/casbin/casbinTest/:pathParam\",\"method\":\"GET\"},{\"path\":\"/jwt/jsonInBlacklist\",\"method\":\"POST\"},{\"path\":\"/system/getSystemConfig\",\"method\":\"POST\"},{\"path\":\"/system/setSystemConfig\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"PUT\"},{\"path\":\"/customer/customer\",\"method\":\"DELETE\"},{\"path\":\"/customer/customer\",\"method\":\"GET\"},{\"path\":\"/customer/customerList\",\"method\":\"GET\"},{\"path\":\"/autoCode/createTemp\",\"method\":\"POST\"},{\"path\":\"/autoCode/getTables\",\"method\":\"GET\"},{\"path\":\"/autoCode/getDB\",\"method\":\"GET\"},{\"path\":\"/autoCode/getColume\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/createSysDictionaryDetail\",\"method\":\"POST\"},{\"path\":\"/sysDictionaryDetail/deleteSysDictionaryDetail\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionaryDetail/updateSysDictionaryDetail\",\"method\":\"PUT\"},{\"path\":\"/sysDictionaryDetail/findSysDictionaryDetail\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/getSysDictionaryDetailList\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/createSysDictionary\",\"method\":\"POST\"},{\"path\":\"/sysDictionary/deleteSysDictionary\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionary/updateSysDictionary\",\"method\":\"PUT\"},{\"path\":\"/sysDictionary/findSysDictionary\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/getSysDictionaryList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/createSysOperationRecord\",\"method\":\"POST\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecord\",\"method\":\"DELETE\"},{\"path\":\"/sysOperationRecord/updateSysOperationRecord\",\"method\":\"PUT\"},{\"path\":\"/sysOperationRecord/findSysOperationRecord\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/getSysOperationRecordList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecordByIds\",\"method\":\"DELETE\"},{\"path\":\"/simpleUploader/upload\",\"method\":\"POST\"},{\"path\":\"/simpleUploader/checkFileMd5\",\"method\":\"GET\"},{\"path\":\"/simpleUploader/mergeFileMd5\",\"method\":\"GET\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (67, '2020-08-23 15:39:37', '2020-08-23 15:39:37', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 5860300, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (68, '2020-08-23 15:39:40', '2020-08-23 15:39:40', NULL, '127.0.0.1', 'POST', '/casbin/getPolicyPathByAuthorityId', 200, 10740000, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"authorityId\":\"888\"}', 10, '{\"code\":0,\"data\":{\"paths\":[{\"path\":\"/base/login\",\"method\":\"POST\"},{\"path\":\"/base/register\",\"method\":\"POST\"},{\"path\":\"/api/createApi\",\"method\":\"POST\"},{\"path\":\"/api/getApiList\",\"method\":\"POST\"},{\"path\":\"/api/getApiById\",\"method\":\"POST\"},{\"path\":\"/api/deleteApi\",\"method\":\"POST\"},{\"path\":\"/api/updateApi\",\"method\":\"POST\"},{\"path\":\"/api/getAllApis\",\"method\":\"POST\"},{\"path\":\"/authority/createAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/deleteAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/getAuthorityList\",\"method\":\"POST\"},{\"path\":\"/authority/setDataAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/updateAuthority\",\"method\":\"PUT\"},{\"path\":\"/authority/copyAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuList\",\"method\":\"POST\"},{\"path\":\"/menu/addBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuTree\",\"method\":\"POST\"},{\"path\":\"/menu/addMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/deleteBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/updateBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuById\",\"method\":\"POST\"},{\"path\":\"/user/changePassword\",\"method\":\"POST\"},{\"path\":\"/user/uploadHeaderImg\",\"method\":\"POST\"},{\"path\":\"/user/getInfoList\",\"method\":\"POST\"},{\"path\":\"/user/getUserList\",\"method\":\"POST\"},{\"path\":\"/user/setUserAuthority\",\"method\":\"POST\"},{\"path\":\"/user/deleteUser\",\"method\":\"DELETE\"},{\"path\":\"/fileUploadAndDownload/upload\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/getFileList\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/deleteFile\",\"method\":\"POST\"},{\"path\":\"/casbin/updateCasbin\",\"method\":\"POST\"},{\"path\":\"/casbin/getPolicyPathByAuthorityId\",\"method\":\"POST\"},{\"path\":\"/casbin/casbinTest/:pathParam\",\"method\":\"GET\"},{\"path\":\"/jwt/jsonInBlacklist\",\"method\":\"POST\"},{\"path\":\"/system/getSystemConfig\",\"method\":\"POST\"},{\"path\":\"/system/setSystemConfig\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"PUT\"},{\"path\":\"/customer/customer\",\"method\":\"DELETE\"},{\"path\":\"/customer/customer\",\"method\":\"GET\"},{\"path\":\"/customer/customerList\",\"method\":\"GET\"},{\"path\":\"/autoCode/createTemp\",\"method\":\"POST\"},{\"path\":\"/autoCode/getTables\",\"method\":\"GET\"},{\"path\":\"/autoCode/getDB\",\"method\":\"GET\"},{\"path\":\"/autoCode/getColume\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/createSysDictionaryDetail\",\"method\":\"POST\"},{\"path\":\"/sysDictionaryDetail/deleteSysDictionaryDetail\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionaryDetail/updateSysDictionaryDetail\",\"method\":\"PUT\"},{\"path\":\"/sysDictionaryDetail/findSysDictionaryDetail\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/getSysDictionaryDetailList\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/createSysDictionary\",\"method\":\"POST\"},{\"path\":\"/sysDictionary/deleteSysDictionary\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionary/updateSysDictionary\",\"method\":\"PUT\"},{\"path\":\"/sysDictionary/findSysDictionary\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/getSysDictionaryList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/createSysOperationRecord\",\"method\":\"POST\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecord\",\"method\":\"DELETE\"},{\"path\":\"/sysOperationRecord/updateSysOperationRecord\",\"method\":\"PUT\"},{\"path\":\"/sysOperationRecord/findSysOperationRecord\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/getSysOperationRecordList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecordByIds\",\"method\":\"DELETE\"},{\"path\":\"/simpleUploader/upload\",\"method\":\"POST\"},{\"path\":\"/simpleUploader/checkFileMd5\",\"method\":\"GET\"},{\"path\":\"/simpleUploader/mergeFileMd5\",\"method\":\"GET\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (69, '2020-08-23 15:39:43', '2020-08-23 15:39:43', NULL, '127.0.0.1', 'GET', '/autoCode/getDB', 200, 3906400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"dbs\":[{\"database\":\"information_schema\"},{\"database\":\"casbin\"},{\"database\":\"demo\"},{\"database\":\"ginclass\"},{\"database\":\"history\"},{\"database\":\"mysql\"},{\"database\":\"pandora\"},{\"database\":\"performance_schema\"},{\"database\":\"qmplus\"},{\"database\":\"qmplus1\"},{\"database\":\"sakila\"},{\"database\":\"tanbao\"},{\"database\":\"test\"},{\"database\":\"world\"},{\"database\":\"zhongzerong\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (70, '2020-08-23 15:39:43', '2020-08-23 15:39:43', NULL, '127.0.0.1', 'GET', '/sysDictionary/findSysDictionary', 200, 2929000, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"resysDictionary\":{\"ID\":6,\"CreatedAt\":\"2020-07-05T15:35:05+08:00\",\"UpdatedAt\":\"2020-07-05T15:35:05+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"name\":\"数据库字符串\",\"type\":\"string\",\"status\":true,\"desc\":\"数据库字符串\",\"sysDictionaryDetails\":[{\"ID\":28,\"CreatedAt\":\"2020-07-05T15:53:25+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:25+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"char\",\"value\":0,\"status\":true,\"sort\":0,\"sysDictionaryID\":6},{\"ID\":29,\"CreatedAt\":\"2020-07-05T15:53:29+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:29+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"varchar\",\"value\":1,\"status\":true,\"sort\":1,\"sysDictionaryID\":6},{\"ID\":30,\"CreatedAt\":\"2020-07-05T15:53:35+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:35+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"tinyblob\",\"value\":2,\"status\":true,\"sort\":2,\"sysDictionaryID\":6},{\"ID\":31,\"CreatedAt\":\"2020-07-05T15:53:40+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:40+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"tinytext\",\"value\":3,\"status\":true,\"sort\":3,\"sysDictionaryID\":6},{\"ID\":32,\"CreatedAt\":\"2020-07-05T15:53:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:48+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"text\",\"value\":4,\"status\":true,\"sort\":4,\"sysDictionaryID\":6},{\"ID\":33,\"CreatedAt\":\"2020-07-05T15:53:55+08:00\",\"UpdatedAt\":\"2020-07-05T15:53:55+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"blob\",\"value\":5,\"status\":true,\"sort\":5,\"sysDictionaryID\":6},{\"ID\":34,\"CreatedAt\":\"2020-07-05T15:54:02+08:00\",\"UpdatedAt\":\"2020-07-05T15:54:02+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"mediumblob\",\"value\":6,\"status\":true,\"sort\":6,\"sysDictionaryID\":6},{\"ID\":35,\"CreatedAt\":\"2020-07-05T15:54:09+08:00\",\"UpdatedAt\":\"2020-07-05T15:54:09+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"mediumtext\",\"value\":7,\"status\":true,\"sort\":7,\"sysDictionaryID\":6},{\"ID\":36,\"CreatedAt\":\"2020-07-05T15:54:16+08:00\",\"UpdatedAt\":\"2020-07-05T15:54:16+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"longblob\",\"value\":8,\"status\":true,\"sort\":8,\"sysDictionaryID\":6},{\"ID\":37,\"CreatedAt\":\"2020-07-05T15:54:24+08:00\",\"UpdatedAt\":\"2020-07-05T15:54:24+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"longtext\",\"value\":9,\"status\":true,\"sort\":9,\"sysDictionaryID\":6}]}},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (71, '2020-08-23 15:39:44', '2020-08-23 15:39:44', NULL, '127.0.0.1', 'GET', '/sysDictionary/findSysDictionary', 200, 1954600, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"resysDictionary\":{\"ID\":3,\"CreatedAt\":\"2020-07-05T15:27:31+08:00\",\"UpdatedAt\":\"2020-07-05T15:27:31+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"name\":\"数据库int类型\",\"type\":\"int\",\"status\":true,\"desc\":\"int类型对应的数据库类型\",\"sysDictionaryDetails\":[{\"ID\":12,\"CreatedAt\":\"2020-07-05T15:31:41+08:00\",\"UpdatedAt\":\"2020-07-05T15:31:41+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"smallint\",\"value\":1,\"status\":true,\"sort\":1,\"sysDictionaryID\":3},{\"ID\":13,\"CreatedAt\":\"2020-07-05T15:31:52+08:00\",\"UpdatedAt\":\"2020-07-05T15:31:52+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"mediumint\",\"value\":2,\"status\":true,\"sort\":2,\"sysDictionaryID\":3},{\"ID\":14,\"CreatedAt\":\"2020-07-05T15:32:04+08:00\",\"UpdatedAt\":\"2020-07-05T15:32:04+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"int\",\"value\":3,\"status\":true,\"sort\":3,\"sysDictionaryID\":3},{\"ID\":15,\"CreatedAt\":\"2020-07-05T15:32:11+08:00\",\"UpdatedAt\":\"2020-07-05T15:32:11+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"bigint\",\"value\":4,\"status\":true,\"sort\":4,\"sysDictionaryID\":3}]}},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (72, '2020-08-23 15:39:44', '2020-08-23 15:39:44', NULL, '127.0.0.1', 'GET', '/sysDictionary/findSysDictionary', 200, 1954400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"resysDictionary\":{\"ID\":7,\"CreatedAt\":\"2020-07-05T15:36:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:36:48+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"name\":\"数据库bool类型\",\"type\":\"bool\",\"status\":true,\"desc\":\"数据库bool类型\",\"sysDictionaryDetails\":[{\"ID\":27,\"CreatedAt\":\"2020-07-05T15:37:45+08:00\",\"UpdatedAt\":\"2020-07-05T15:37:45+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"tinyint\",\"value\":0,\"status\":true,\"sort\":0,\"sysDictionaryID\":7}]}},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (73, '2020-08-23 15:39:44', '2020-08-23 15:39:44', NULL, '127.0.0.1', 'GET', '/sysDictionary/findSysDictionary', 200, 976100, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"resysDictionary\":{\"ID\":5,\"CreatedAt\":\"2020-07-05T15:34:23+08:00\",\"UpdatedAt\":\"2020-07-05T15:52:45+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"name\":\"数据库浮点型\",\"type\":\"float64\",\"status\":true,\"desc\":\"数据库浮点型\",\"sysDictionaryDetails\":[{\"ID\":24,\"CreatedAt\":\"2020-07-05T15:34:30+08:00\",\"UpdatedAt\":\"2020-07-05T15:34:30+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"float\",\"value\":0,\"status\":true,\"sort\":0,\"sysDictionaryID\":5},{\"ID\":25,\"CreatedAt\":\"2020-07-05T15:34:35+08:00\",\"UpdatedAt\":\"2020-07-05T15:34:35+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"double\",\"value\":1,\"status\":true,\"sort\":1,\"sysDictionaryID\":5},{\"ID\":26,\"CreatedAt\":\"2020-07-05T15:34:41+08:00\",\"UpdatedAt\":\"2020-07-05T15:34:41+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"decimal\",\"value\":2,\"status\":true,\"sort\":2,\"sysDictionaryID\":5}]}},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (74, '2020-08-23 15:39:44', '2020-08-23 15:39:44', NULL, '127.0.0.1', 'GET', '/sysDictionary/findSysDictionary', 200, 2929600, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"resysDictionary\":{\"ID\":4,\"CreatedAt\":\"2020-07-05T15:33:07+08:00\",\"UpdatedAt\":\"2020-07-05T16:07:18+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"name\":\"数据库时间日期类型\",\"type\":\"time.Time\",\"status\":true,\"desc\":\"数据库时间日期类型\",\"sysDictionaryDetails\":[{\"ID\":19,\"CreatedAt\":\"2020-07-05T15:33:16+08:00\",\"UpdatedAt\":\"2020-07-05T15:33:16+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"data\",\"value\":0,\"status\":true,\"sort\":0,\"sysDictionaryID\":4},{\"ID\":20,\"CreatedAt\":\"2020-07-05T15:33:21+08:00\",\"UpdatedAt\":\"2020-07-05T15:33:21+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"time\",\"value\":1,\"status\":true,\"sort\":1,\"sysDictionaryID\":4},{\"ID\":21,\"CreatedAt\":\"2020-07-05T15:33:25+08:00\",\"UpdatedAt\":\"2020-07-05T15:33:25+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"year\",\"value\":2,\"status\":true,\"sort\":2,\"sysDictionaryID\":4},{\"ID\":22,\"CreatedAt\":\"2020-07-05T15:33:35+08:00\",\"UpdatedAt\":\"2020-07-05T15:33:35+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"datetime\",\"value\":3,\"status\":true,\"sort\":3,\"sysDictionaryID\":4},{\"ID\":23,\"CreatedAt\":\"2020-07-05T15:33:42+08:00\",\"UpdatedAt\":\"2020-07-05T15:33:42+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"label\":\"timestamp\",\"value\":5,\"status\":true,\"sort\":5,\"sysDictionaryID\":4}]}},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (75, '2020-08-23 15:39:47', '2020-08-23 15:39:47', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 4873200, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (76, '2020-08-23 15:39:49', '2020-08-23 15:39:49', NULL, '127.0.0.1', 'POST', '/user/getUserList', 200, 1953100, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":10}', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":10,\"CreatedAt\":\"2019-09-13T17:23:46+08:00\",\"UpdatedAt\":\"2020-06-26T21:17:50+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"uuid\":\"ce0d6685-c15f-4126-a5b4-890bc9d2356d\",\"userName\":\"admin\",\"nickName\":\"超级管理员\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1571627762timg.jpg\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"888\"},{\"ID\":11,\"CreatedAt\":\"2019-09-13T17:27:29+08:00\",\"UpdatedAt\":\"2019-09-13T17:27:29+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"uuid\":\"fd6ef79b-944c-4888-8377-abe2d2608858\",\"userName\":\"a303176530\",\"nickName\":\"QMPlusUser\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1572075907logo.png\",\"authority\":{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"9528\"}],\"total\":2,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (77, '2020-08-23 15:39:49', '2020-08-23 15:39:49', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 5858300, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (78, '2020-08-23 15:39:50', '2020-08-23 15:39:50', NULL, '127.0.0.1', 'GET', '/sysDictionary/getSysDictionaryList', 200, 7810800, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":2,\"CreatedAt\":\"2020-06-24T20:44:00+08:00\",\"UpdatedAt\":\"2020-06-24T20:44:00+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"name\":\"性别\",\"type\":\"sex\",\"status\":true,\"desc\":\"性别字典\",\"sysDictionaryDetails\":null},{\"ID\":3,\"CreatedAt\":\"2020-07-05T15:27:31+08:00\",\"UpdatedAt\":\"2020-07-05T15:27:31+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"name\":\"数据库int类型\",\"type\":\"int\",\"status\":true,\"desc\":\"int类型对应的数据库类型\",\"sysDictionaryDetails\":null},{\"ID\":4,\"CreatedAt\":\"2020-07-05T15:33:07+08:00\",\"UpdatedAt\":\"2020-07-05T16:07:18+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"name\":\"数据库时间日期类型\",\"type\":\"time.Time\",\"status\":true,\"desc\":\"数据库时间日期类型\",\"sysDictionaryDetails\":null},{\"ID\":5,\"CreatedAt\":\"2020-07-05T15:34:23+08:00\",\"UpdatedAt\":\"2020-07-05T15:52:45+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"name\":\"数据库浮点型\",\"type\":\"float64\",\"status\":true,\"desc\":\"数据库浮点型\",\"sysDictionaryDetails\":null},{\"ID\":6,\"CreatedAt\":\"2020-07-05T15:35:05+08:00\",\"UpdatedAt\":\"2020-07-05T15:35:05+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"name\":\"数据库字符串\",\"type\":\"string\",\"status\":true,\"desc\":\"数据库字符串\",\"sysDictionaryDetails\":null},{\"ID\":7,\"CreatedAt\":\"2020-07-05T15:36:48+08:00\",\"UpdatedAt\":\"2020-07-05T15:36:48+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"name\":\"数据库bool类型\",\"type\":\"bool\",\"status\":true,\"desc\":\"数据库bool类型\",\"sysDictionaryDetails\":null}],\"total\":6,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (79, '2020-08-23 15:39:51', '2020-08-23 15:39:51', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 4870200, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (80, '2020-08-23 15:39:53', '2020-08-23 15:39:53', NULL, '127.0.0.1', 'GET', '/autoCode/getDB', 200, 3907400, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"dbs\":[{\"database\":\"information_schema\"},{\"database\":\"casbin\"},{\"database\":\"demo\"},{\"database\":\"ginclass\"},{\"database\":\"history\"},{\"database\":\"mysql\"},{\"database\":\"pandora\"},{\"database\":\"performance_schema\"},{\"database\":\"qmplus\"},{\"database\":\"qmplus1\"},{\"database\":\"sakila\"},{\"database\":\"tanbao\"},{\"database\":\"test\"},{\"database\":\"world\"},{\"database\":\"zhongzerong\"}]},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (81, '2020-08-23 15:40:00', '2020-08-23 15:40:00', NULL, '127.0.0.1', 'GET', '/customer/customerList', 200, 3906300, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '', 10, '{\"code\":0,\"data\":{\"list\":[{\"ID\":1,\"CreatedAt\":\"2020-02-25T18:01:48+08:00\",\"UpdatedAt\":\"2020-04-10T12:29:29+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"customerName\":\"测试客户\",\"customerPhoneData\":\"1761111111\",\"sysUserId\":10,\"sysUserAuthorityID\":\"888\",\"sysUser\":{\"ID\":10,\"CreatedAt\":\"2019-09-13T17:23:46+08:00\",\"UpdatedAt\":\"2020-06-26T21:17:50+08:00\",\"DeletedAt\":{\"Time\":\"0001-01-01T00:00:00Z\",\"Valid\":false},\"uuid\":\"ce0d6685-c15f-4126-a5b4-890bc9d2356d\",\"userName\":\"admin\",\"nickName\":\"超级管理员\",\"headerImg\":\"http://qmplusimg.henrongyi.top/1571627762timg.jpg\",\"authority\":{\"CreatedAt\":\"0001-01-01T00:00:00Z\",\"UpdatedAt\":\"0001-01-01T00:00:00Z\",\"DeletedAt\":null,\"authorityId\":\"\",\"authorityName\":\"\",\"parentId\":\"\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},\"authorityId\":\"888\"}}],\"total\":1,\"page\":1,\"pageSize\":10},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (82, '2020-08-23 15:40:07', '2020-08-23 15:40:07', NULL, '127.0.0.1', 'POST', '/authority/getAuthorityList', 200, 3905700, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"page\":1,\"pageSize\":999}', 10, '{\"code\":0,\"data\":{\"list\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-06-13T16:07:37+08:00\",\"DeletedAt\":null,\"authorityId\":\"888\",\"authorityName\":\"普通用户\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":null,\"menus\":null}],\"children\":[{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"8881\",\"authorityName\":\"普通用户子角色\",\"parentId\":\"888\",\"dataAuthorityId\":null,\"children\":[],\"menus\":null}],\"menus\":null},{\"CreatedAt\":\"2020-04-04T11:44:56+08:00\",\"UpdatedAt\":\"2020-04-24T10:16:42+08:00\",\"DeletedAt\":null,\"authorityId\":\"9528\",\"authorityName\":\"测试角色\",\"parentId\":\"0\",\"dataAuthorityId\":null,\"children\":[],\"menus\":null}],\"total\":0,\"page\":1,\"pageSize\":999},\"msg\":\"操作成功\"}'); -INSERT INTO `sys_operation_records` VALUES (83, '2020-08-23 15:40:15', '2020-08-23 15:40:15', NULL, '127.0.0.1', 'POST', '/casbin/getPolicyPathByAuthorityId', 200, 6847500, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36', '', '{\"authorityId\":\"888\"}', 10, '{\"code\":0,\"data\":{\"paths\":[{\"path\":\"/base/login\",\"method\":\"POST\"},{\"path\":\"/base/register\",\"method\":\"POST\"},{\"path\":\"/api/createApi\",\"method\":\"POST\"},{\"path\":\"/api/getApiList\",\"method\":\"POST\"},{\"path\":\"/api/getApiById\",\"method\":\"POST\"},{\"path\":\"/api/deleteApi\",\"method\":\"POST\"},{\"path\":\"/api/updateApi\",\"method\":\"POST\"},{\"path\":\"/api/getAllApis\",\"method\":\"POST\"},{\"path\":\"/authority/createAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/deleteAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/getAuthorityList\",\"method\":\"POST\"},{\"path\":\"/authority/setDataAuthority\",\"method\":\"POST\"},{\"path\":\"/authority/updateAuthority\",\"method\":\"PUT\"},{\"path\":\"/authority/copyAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuList\",\"method\":\"POST\"},{\"path\":\"/menu/addBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuTree\",\"method\":\"POST\"},{\"path\":\"/menu/addMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/getMenuAuthority\",\"method\":\"POST\"},{\"path\":\"/menu/deleteBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/updateBaseMenu\",\"method\":\"POST\"},{\"path\":\"/menu/getBaseMenuById\",\"method\":\"POST\"},{\"path\":\"/user/changePassword\",\"method\":\"POST\"},{\"path\":\"/user/uploadHeaderImg\",\"method\":\"POST\"},{\"path\":\"/user/getInfoList\",\"method\":\"POST\"},{\"path\":\"/user/getUserList\",\"method\":\"POST\"},{\"path\":\"/user/setUserAuthority\",\"method\":\"POST\"},{\"path\":\"/user/deleteUser\",\"method\":\"DELETE\"},{\"path\":\"/fileUploadAndDownload/upload\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/getFileList\",\"method\":\"POST\"},{\"path\":\"/fileUploadAndDownload/deleteFile\",\"method\":\"POST\"},{\"path\":\"/casbin/updateCasbin\",\"method\":\"POST\"},{\"path\":\"/casbin/getPolicyPathByAuthorityId\",\"method\":\"POST\"},{\"path\":\"/casbin/casbinTest/:pathParam\",\"method\":\"GET\"},{\"path\":\"/jwt/jsonInBlacklist\",\"method\":\"POST\"},{\"path\":\"/system/getSystemConfig\",\"method\":\"POST\"},{\"path\":\"/system/setSystemConfig\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"POST\"},{\"path\":\"/customer/customer\",\"method\":\"PUT\"},{\"path\":\"/customer/customer\",\"method\":\"DELETE\"},{\"path\":\"/customer/customer\",\"method\":\"GET\"},{\"path\":\"/customer/customerList\",\"method\":\"GET\"},{\"path\":\"/autoCode/createTemp\",\"method\":\"POST\"},{\"path\":\"/autoCode/getTables\",\"method\":\"GET\"},{\"path\":\"/autoCode/getDB\",\"method\":\"GET\"},{\"path\":\"/autoCode/getColume\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/createSysDictionaryDetail\",\"method\":\"POST\"},{\"path\":\"/sysDictionaryDetail/deleteSysDictionaryDetail\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionaryDetail/updateSysDictionaryDetail\",\"method\":\"PUT\"},{\"path\":\"/sysDictionaryDetail/findSysDictionaryDetail\",\"method\":\"GET\"},{\"path\":\"/sysDictionaryDetail/getSysDictionaryDetailList\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/createSysDictionary\",\"method\":\"POST\"},{\"path\":\"/sysDictionary/deleteSysDictionary\",\"method\":\"DELETE\"},{\"path\":\"/sysDictionary/updateSysDictionary\",\"method\":\"PUT\"},{\"path\":\"/sysDictionary/findSysDictionary\",\"method\":\"GET\"},{\"path\":\"/sysDictionary/getSysDictionaryList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/createSysOperationRecord\",\"method\":\"POST\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecord\",\"method\":\"DELETE\"},{\"path\":\"/sysOperationRecord/updateSysOperationRecord\",\"method\":\"PUT\"},{\"path\":\"/sysOperationRecord/findSysOperationRecord\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/getSysOperationRecordList\",\"method\":\"GET\"},{\"path\":\"/sysOperationRecord/deleteSysOperationRecordByIds\",\"method\":\"DELETE\"},{\"path\":\"/simpleUploader/upload\",\"method\":\"POST\"},{\"path\":\"/simpleUploader/checkFileMd5\",\"method\":\"GET\"},{\"path\":\"/simpleUploader/mergeFileMd5\",\"method\":\"GET\"}]},\"msg\":\"操作成功\"}'); +) ENGINE = InnoDB AUTO_INCREMENT = 166 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Table structure for sys_users @@ -758,13 +674,13 @@ CREATE TABLE `sys_users` ( PRIMARY KEY (`id`) USING BTREE, INDEX `idx_users_deleted_at`(`deleted_at`) USING BTREE, INDEX `idx_sys_users_deleted_at`(`deleted_at`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 12 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB AUTO_INCREMENT = 12 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Records of sys_users -- ---------------------------- -INSERT INTO `sys_users` VALUES (10, '2019-09-13 17:23:46', '2020-06-26 21:17:50', NULL, 0x63653064363638352D633135662D343132362D613562342D383930626339643233353664, '超级管理员', 'http://qmplusimg.henrongyi.top/1571627762timg.jpg', 888, 'admin', 'e10adc3949ba59abbe56e057f20f883e'); -INSERT INTO `sys_users` VALUES (11, '2019-09-13 17:27:29', '2019-09-13 17:27:29', NULL, 0x66643665663739622D393434632D343838382D383337372D616265326432363038383538, 'QMPlusUser', 'http://qmplusimg.henrongyi.top/1572075907logo.png', 9528, 'a303176530', '3ec063004a6f31642261936a379fde3d'); +INSERT INTO `sys_users` VALUES (10, '2019-09-13 17:23:46', '2020-08-31 22:58:43', NULL, 0x63653064363638352D633135662D343132362D613562342D383930626339643233353664, '超级管理员', 'http://qmplusimg.henrongyi.top/gvalogo.png', 888, 'admin', 'e10adc3949ba59abbe56e057f20f883e'); +INSERT INTO `sys_users` VALUES (11, '2019-09-13 17:27:29', '2019-09-13 17:27:29', NULL, 0x66643665663739622D393434632D343838382D383337372D616265326432363038383538, 'QMPlusUser', 'http://qmplusimg.henrongyi.top/gvalogo.png', 9528, 'a303176530', '3ec063004a6f31642261936a379fde3d'); -- ---------------------------- -- Table structure for sys_workflow_step_infos @@ -785,7 +701,7 @@ CREATE TABLE `sys_workflow_step_infos` ( PRIMARY KEY (`id`) USING BTREE, INDEX `idx_workflow_step_infos_deleted_at`(`deleted_at`) USING BTREE, INDEX `idx_sys_workflow_step_infos_deleted_at`(`deleted_at`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- Table structure for sys_workflows @@ -801,7 +717,7 @@ CREATE TABLE `sys_workflows` ( `workflow_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '工作流描述', PRIMARY KEY (`id`) USING BTREE, INDEX `idx_sys_workflows_deleted_at`(`deleted_at`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact; -- ---------------------------- -- View structure for authority_menu diff --git a/server/db/sqlite/casbin_rule.sql b/server/db/sqlite/casbin_rule.sql index f934de20..59c8fee9 100644 --- a/server/db/sqlite/casbin_rule.sql +++ b/server/db/sqlite/casbin_rule.sql @@ -43,8 +43,6 @@ INSERT INTO casbin_rule (p_type,v0,v1,v2,v3,v4,v5) VALUES ( INSERT INTO casbin_rule (p_type,v0,v1,v2,v3,v4,v5) VALUES ( 'p','8881','/user/changePassword','POST','','',''); INSERT INTO casbin_rule (p_type,v0,v1,v2,v3,v4,v5) VALUES ( -'p','8881','/user/uploadHeaderImg','POST','','',''); -INSERT INTO casbin_rule (p_type,v0,v1,v2,v3,v4,v5) VALUES ( 'p','8881','/user/getInfoList','POST','','',''); INSERT INTO casbin_rule (p_type,v0,v1,v2,v3,v4,v5) VALUES ( 'p','8881','/user/getUserList','POST','','',''); @@ -121,8 +119,6 @@ INSERT INTO casbin_rule (p_type,v0,v1,v2,v3,v4,v5) VALUES ( INSERT INTO casbin_rule (p_type,v0,v1,v2,v3,v4,v5) VALUES ( 'p','9528','/user/changePassword','POST','','',''); INSERT INTO casbin_rule (p_type,v0,v1,v2,v3,v4,v5) VALUES ( -'p','9528','/user/uploadHeaderImg','POST','','',''); -INSERT INTO casbin_rule (p_type,v0,v1,v2,v3,v4,v5) VALUES ( 'p','9528','/user/getInfoList','POST','','',''); INSERT INTO casbin_rule (p_type,v0,v1,v2,v3,v4,v5) VALUES ( 'p','9528','/user/getUserList','POST','','',''); @@ -201,8 +197,6 @@ INSERT INTO casbin_rule (p_type,v0,v1,v2,v3,v4,v5) VALUES ( INSERT INTO casbin_rule (p_type,v0,v1,v2,v3,v4,v5) VALUES ( 'p','888','/user/changePassword','POST','','',''); INSERT INTO casbin_rule (p_type,v0,v1,v2,v3,v4,v5) VALUES ( -'p','888','/user/uploadHeaderImg','POST','','',''); -INSERT INTO casbin_rule (p_type,v0,v1,v2,v3,v4,v5) VALUES ( 'p','888','/user/getInfoList','POST','','',''); INSERT INTO casbin_rule (p_type,v0,v1,v2,v3,v4,v5) VALUES ( 'p','888','/user/getUserList','POST','','',''); diff --git a/server/db/sqlite/sys_apis.sql b/server/db/sqlite/sys_apis.sql index ad666493..9adacc8b 100644 --- a/server/db/sqlite/sys_apis.sql +++ b/server/db/sqlite/sys_apis.sql @@ -41,8 +41,6 @@ INSERT INTO sys_apis (id,created_at,updated_at,deleted_at,authority_id,"path",de INSERT INTO sys_apis (id,created_at,updated_at,deleted_at,authority_id,"path",description,api_group,"method") VALUES ( 23,1569828559000,1569828559000,NULL,NULL,'/user/changePassword','修改密码','user','POST'); INSERT INTO sys_apis (id,created_at,updated_at,deleted_at,authority_id,"path",description,api_group,"method") VALUES ( -24,1569828573000,1569828573000,NULL,NULL,'/user/uploadHeaderImg','上传头像','user','POST'); -INSERT INTO sys_apis (id,created_at,updated_at,deleted_at,authority_id,"path",description,api_group,"method") VALUES ( 25,1569828600000,1569828600000,NULL,NULL,'/user/getInfoList','分页获取用户列表','user','POST'); INSERT INTO sys_apis (id,created_at,updated_at,deleted_at,authority_id,"path",description,api_group,"method") VALUES ( 28,1570605317000,1570605427000,NULL,NULL,'/user/getUserList','获取用户列表','user','POST'); diff --git a/server/docs/docs.go b/server/docs/docs.go index 8551198e..7bc23b00 100644 --- a/server/docs/docs.go +++ b/server/docs/docs.go @@ -1,6 +1,6 @@ // GENERATED BY THE COMMAND ABOVE; DO NOT EDIT // This file was generated by swaggo/swag at -// 2020-08-20 11:59:55.622609 +0800 CST m=+0.106561201 +// 2020-08-31 21:50:05.0136259 +0800 CST m=+0.193314401 package docs @@ -50,7 +50,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysApi" } } @@ -89,7 +88,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysApi" } } @@ -155,7 +153,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.GetById" } } @@ -194,7 +191,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.SearchApiParams" } } @@ -233,7 +229,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysApi" } } @@ -272,7 +267,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/response.SysAuthorityCopyResponse" } } @@ -311,7 +305,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysAuthority" } } @@ -350,7 +343,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysAuthority" } } @@ -389,7 +381,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.PageInfo" } } @@ -428,7 +419,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysAuthority" } } @@ -467,7 +457,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysAuthority" } } @@ -506,7 +495,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.AutoCodeStruct" } } @@ -591,7 +579,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.RegisterAndLoginStruct" } } @@ -622,7 +609,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysUser" } } @@ -637,45 +623,6 @@ var doc = `{ } } }, - "/casbin/CasbinTest": { - "get": { - "security": [ - { - "ApiKeyAuth": [] - } - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "casbin" - ], - "summary": "casb RBAC RESTFUL测试路由", - "parameters": [ - { - "description": "获取权限列表", - "name": "data", - "in": "body", - "required": true, - "schema": { - "type": "object", - "$ref": "#/definitions/request.CasbinInReceive" - } - } - ], - "responses": { - "200": { - "description": "{\"success\":true,\"data\":{},\"msg\":\"获取成功\"}", - "schema": { - "type": "string" - } - } - } - } - }, "/casbin/UpdateCasbin": { "post": { "security": [ @@ -700,7 +647,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.CasbinInReceive" } } @@ -739,7 +685,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.CasbinInReceive" } } @@ -778,7 +723,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.ExaCustomer" } } @@ -815,7 +759,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.ExaCustomer" } } @@ -852,7 +795,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.ExaCustomer" } } @@ -889,7 +831,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.ExaCustomer" } } @@ -928,7 +869,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.PageInfo" } } @@ -1000,7 +940,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.ExaFileUploadAndDownload" } } @@ -1075,7 +1014,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.PageInfo" } } @@ -1213,7 +1151,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.AuthorityIdInfo" } } @@ -1252,7 +1189,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysBaseMenu" } } @@ -1291,7 +1227,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.AddMenuAuthorityInfo" } } @@ -1330,7 +1265,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.GetById" } } @@ -1369,7 +1303,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.GetById" } } @@ -1405,7 +1338,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.RegisterAndLoginStruct" } } @@ -1441,7 +1373,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.RegisterAndLoginStruct" } } @@ -1480,7 +1411,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.PageInfo" } } @@ -1519,7 +1449,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysBaseMenu" } } @@ -1651,7 +1580,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionary" } } @@ -1690,7 +1618,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionary" } } @@ -1729,7 +1656,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionary" } } @@ -1768,7 +1694,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.SysDictionarySearch" } } @@ -1807,7 +1732,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionary" } } @@ -1846,7 +1770,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionaryDetail" } } @@ -1885,7 +1808,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionaryDetail" } } @@ -1924,7 +1846,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionaryDetail" } } @@ -1963,7 +1884,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.SysDictionaryDetailSearch" } } @@ -2002,7 +1922,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionaryDetail" } } @@ -2041,7 +1960,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysOperationRecord" } } @@ -2080,7 +1998,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysOperationRecord" } } @@ -2119,7 +2036,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.IdsReq" } } @@ -2158,7 +2074,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysOperationRecord" } } @@ -2197,7 +2112,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.SysOperationRecordSearch" } } @@ -2212,45 +2126,6 @@ var doc = `{ } } }, - "/sysOperationRecord/updateSysOperationRecord": { - "put": { - "security": [ - { - "ApiKeyAuth": [] - } - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "SysOperationRecord" - ], - "summary": "更新SysOperationRecord", - "parameters": [ - { - "description": "更新SysOperationRecord", - "name": "data", - "in": "body", - "required": true, - "schema": { - "type": "object", - "$ref": "#/definitions/model.SysOperationRecord" - } - } - ], - "responses": { - "200": { - "description": "{\"success\":true,\"data\":{},\"msg\":\"更新成功\"}", - "schema": { - "type": "string" - } - } - } - } - }, "/system/ReloadSystem": { "post": { "security": [ @@ -2272,7 +2147,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.System" } } @@ -2332,7 +2206,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.System" } } @@ -2368,7 +2241,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.ChangePasswordStruct" } } @@ -2407,7 +2279,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.GetById" } } @@ -2446,7 +2317,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.PageInfo" } } @@ -2485,7 +2355,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.SetUserAuth" } } @@ -2500,49 +2369,6 @@ var doc = `{ } } }, - "/user/uploadHeaderImg": { - "post": { - "security": [ - { - "ApiKeyAuth": [] - } - ], - "consumes": [ - "multipart/form-data" - ], - "produces": [ - "application/json" - ], - "tags": [ - "SysUser" - ], - "summary": "用户上传头像", - "parameters": [ - { - "type": "file", - "description": "用户上传头像", - "name": "headerImg", - "in": "formData", - "required": true - }, - { - "type": "string", - "description": "用户上传头像", - "name": "username", - "in": "formData", - "required": true - } - ], - "responses": { - "200": { - "description": "{\"success\":true,\"data\":{},\"msg\":\"上传成功\"}", - "schema": { - "type": "string" - } - } - } - } - }, "/workflow/createWorkFlow": { "post": { "produces": [ @@ -2559,7 +2385,6 @@ var doc = `{ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysWorkflow" } } @@ -2606,6 +2431,20 @@ var doc = `{ } } }, + "config.LocalUpload": { + "type": "object", + "properties": { + "avatarPath": { + "type": "string" + }, + "filePath": { + "type": "string" + }, + "local": { + "type": "boolean" + } + } + }, "config.Log": { "type": "object", "properties": { @@ -2698,6 +2537,10 @@ var doc = `{ "type": "object", "$ref": "#/definitions/config.JWT" }, + "localUpload": { + "type": "object", + "$ref": "#/definitions/config.LocalUpload" + }, "log": { "type": "object", "$ref": "#/definitions/config.Log" @@ -2980,7 +2823,7 @@ var doc = `{ "key": { "type": "string" }, - "sysBaseMenuId": { + "sysBaseMenuID": { "type": "integer" }, "type": { diff --git a/server/docs/swagger.json b/server/docs/swagger.json index 31660b45..51eac007 100644 --- a/server/docs/swagger.json +++ b/server/docs/swagger.json @@ -33,7 +33,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysApi" } } @@ -72,7 +71,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysApi" } } @@ -138,7 +136,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.GetById" } } @@ -177,7 +174,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.SearchApiParams" } } @@ -216,7 +212,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysApi" } } @@ -255,7 +250,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/response.SysAuthorityCopyResponse" } } @@ -294,7 +288,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysAuthority" } } @@ -333,7 +326,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysAuthority" } } @@ -372,7 +364,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.PageInfo" } } @@ -411,7 +402,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysAuthority" } } @@ -450,7 +440,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysAuthority" } } @@ -489,7 +478,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.AutoCodeStruct" } } @@ -574,7 +562,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.RegisterAndLoginStruct" } } @@ -605,7 +592,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysUser" } } @@ -620,45 +606,6 @@ } } }, - "/casbin/CasbinTest": { - "get": { - "security": [ - { - "ApiKeyAuth": [] - } - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "casbin" - ], - "summary": "casb RBAC RESTFUL测试路由", - "parameters": [ - { - "description": "获取权限列表", - "name": "data", - "in": "body", - "required": true, - "schema": { - "type": "object", - "$ref": "#/definitions/request.CasbinInReceive" - } - } - ], - "responses": { - "200": { - "description": "{\"success\":true,\"data\":{},\"msg\":\"获取成功\"}", - "schema": { - "type": "string" - } - } - } - } - }, "/casbin/UpdateCasbin": { "post": { "security": [ @@ -683,7 +630,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.CasbinInReceive" } } @@ -722,7 +668,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.CasbinInReceive" } } @@ -761,7 +706,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.ExaCustomer" } } @@ -798,7 +742,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.ExaCustomer" } } @@ -835,7 +778,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.ExaCustomer" } } @@ -872,7 +814,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.ExaCustomer" } } @@ -911,7 +852,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.PageInfo" } } @@ -983,7 +923,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.ExaFileUploadAndDownload" } } @@ -1058,7 +997,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.PageInfo" } } @@ -1196,7 +1134,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.AuthorityIdInfo" } } @@ -1235,7 +1172,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysBaseMenu" } } @@ -1274,7 +1210,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.AddMenuAuthorityInfo" } } @@ -1313,7 +1248,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.GetById" } } @@ -1352,7 +1286,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.GetById" } } @@ -1388,7 +1321,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.RegisterAndLoginStruct" } } @@ -1424,7 +1356,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.RegisterAndLoginStruct" } } @@ -1463,7 +1394,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.PageInfo" } } @@ -1502,7 +1432,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysBaseMenu" } } @@ -1634,7 +1563,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionary" } } @@ -1673,7 +1601,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionary" } } @@ -1712,7 +1639,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionary" } } @@ -1751,7 +1677,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.SysDictionarySearch" } } @@ -1790,7 +1715,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionary" } } @@ -1829,7 +1753,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionaryDetail" } } @@ -1868,7 +1791,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionaryDetail" } } @@ -1907,7 +1829,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionaryDetail" } } @@ -1946,7 +1867,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.SysDictionaryDetailSearch" } } @@ -1985,7 +1905,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysDictionaryDetail" } } @@ -2024,7 +1943,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysOperationRecord" } } @@ -2063,7 +1981,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysOperationRecord" } } @@ -2102,7 +2019,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.IdsReq" } } @@ -2141,7 +2057,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysOperationRecord" } } @@ -2180,7 +2095,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.SysOperationRecordSearch" } } @@ -2195,45 +2109,6 @@ } } }, - "/sysOperationRecord/updateSysOperationRecord": { - "put": { - "security": [ - { - "ApiKeyAuth": [] - } - ], - "consumes": [ - "application/json" - ], - "produces": [ - "application/json" - ], - "tags": [ - "SysOperationRecord" - ], - "summary": "更新SysOperationRecord", - "parameters": [ - { - "description": "更新SysOperationRecord", - "name": "data", - "in": "body", - "required": true, - "schema": { - "type": "object", - "$ref": "#/definitions/model.SysOperationRecord" - } - } - ], - "responses": { - "200": { - "description": "{\"success\":true,\"data\":{},\"msg\":\"更新成功\"}", - "schema": { - "type": "string" - } - } - } - } - }, "/system/ReloadSystem": { "post": { "security": [ @@ -2255,7 +2130,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.System" } } @@ -2315,7 +2189,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.System" } } @@ -2351,7 +2224,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.ChangePasswordStruct" } } @@ -2390,7 +2262,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.GetById" } } @@ -2429,7 +2300,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.PageInfo" } } @@ -2468,7 +2338,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/request.SetUserAuth" } } @@ -2483,49 +2352,6 @@ } } }, - "/user/uploadHeaderImg": { - "post": { - "security": [ - { - "ApiKeyAuth": [] - } - ], - "consumes": [ - "multipart/form-data" - ], - "produces": [ - "application/json" - ], - "tags": [ - "SysUser" - ], - "summary": "用户上传头像", - "parameters": [ - { - "type": "file", - "description": "用户上传头像", - "name": "headerImg", - "in": "formData", - "required": true - }, - { - "type": "string", - "description": "用户上传头像", - "name": "username", - "in": "formData", - "required": true - } - ], - "responses": { - "200": { - "description": "{\"success\":true,\"data\":{},\"msg\":\"上传成功\"}", - "schema": { - "type": "string" - } - } - } - } - }, "/workflow/createWorkFlow": { "post": { "produces": [ @@ -2542,7 +2368,6 @@ "in": "body", "required": true, "schema": { - "type": "object", "$ref": "#/definitions/model.SysWorkflow" } } @@ -2589,6 +2414,20 @@ } } }, + "config.LocalUpload": { + "type": "object", + "properties": { + "avatarPath": { + "type": "string" + }, + "filePath": { + "type": "string" + }, + "local": { + "type": "boolean" + } + } + }, "config.Log": { "type": "object", "properties": { @@ -2681,6 +2520,10 @@ "type": "object", "$ref": "#/definitions/config.JWT" }, + "localUpload": { + "type": "object", + "$ref": "#/definitions/config.LocalUpload" + }, "log": { "type": "object", "$ref": "#/definitions/config.Log" @@ -2963,7 +2806,7 @@ "key": { "type": "string" }, - "sysBaseMenuId": { + "sysBaseMenuID": { "type": "integer" }, "type": { diff --git a/server/docs/swagger.yaml b/server/docs/swagger.yaml index ff8ef348..7ebc26ce 100644 --- a/server/docs/swagger.yaml +++ b/server/docs/swagger.yaml @@ -19,6 +19,15 @@ definitions: signingKey: type: string type: object + config.LocalUpload: + properties: + avatarPath: + type: string + filePath: + type: string + local: + type: boolean + type: object config.Log: properties: file: @@ -80,6 +89,9 @@ definitions: jwt: $ref: '#/definitions/config.JWT' type: object + localUpload: + $ref: '#/definitions/config.LocalUpload' + type: object log: $ref: '#/definitions/config.Log' type: object @@ -267,7 +279,7 @@ definitions: properties: key: type: string - sysBaseMenuId: + sysBaseMenuID: type: integer type: type: string @@ -575,7 +587,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysApi' - type: object produces: - application/json responses: @@ -599,7 +610,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysApi' - type: object produces: - application/json responses: @@ -639,7 +649,6 @@ paths: required: true schema: $ref: '#/definitions/request.GetById' - type: object produces: - application/json responses: @@ -663,7 +672,6 @@ paths: required: true schema: $ref: '#/definitions/request.SearchApiParams' - type: object produces: - application/json responses: @@ -687,7 +695,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysApi' - type: object produces: - application/json responses: @@ -711,7 +718,6 @@ paths: required: true schema: $ref: '#/definitions/response.SysAuthorityCopyResponse' - type: object produces: - application/json responses: @@ -735,7 +741,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysAuthority' - type: object produces: - application/json responses: @@ -759,7 +764,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysAuthority' - type: object produces: - application/json responses: @@ -783,7 +787,6 @@ paths: required: true schema: $ref: '#/definitions/request.PageInfo' - type: object produces: - application/json responses: @@ -807,7 +810,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysAuthority' - type: object produces: - application/json responses: @@ -831,7 +833,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysAuthority' - type: object produces: - application/json responses: @@ -855,7 +856,6 @@ paths: required: true schema: $ref: '#/definitions/model.AutoCodeStruct' - type: object produces: - application/json responses: @@ -909,7 +909,6 @@ paths: required: true schema: $ref: '#/definitions/request.RegisterAndLoginStruct' - type: object produces: - application/json responses: @@ -929,7 +928,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysUser' - type: object produces: - application/json responses: @@ -940,30 +938,6 @@ paths: summary: 用户注册账号 tags: - Base - /casbin/CasbinTest: - get: - consumes: - - application/json - parameters: - - description: 获取权限列表 - in: body - name: data - required: true - schema: - $ref: '#/definitions/request.CasbinInReceive' - type: object - produces: - - application/json - responses: - "200": - description: '{"success":true,"data":{},"msg":"获取成功"}' - schema: - type: string - security: - - ApiKeyAuth: [] - summary: casb RBAC RESTFUL测试路由 - tags: - - casbin /casbin/UpdateCasbin: post: consumes: @@ -975,7 +949,6 @@ paths: required: true schema: $ref: '#/definitions/request.CasbinInReceive' - type: object produces: - application/json responses: @@ -999,7 +972,6 @@ paths: required: true schema: $ref: '#/definitions/request.CasbinInReceive' - type: object produces: - application/json responses: @@ -1023,7 +995,6 @@ paths: required: true schema: $ref: '#/definitions/model.ExaCustomer' - type: object produces: - application/json responses: @@ -1046,7 +1017,6 @@ paths: required: true schema: $ref: '#/definitions/model.ExaCustomer' - type: object produces: - application/json responses: @@ -1069,7 +1039,6 @@ paths: required: true schema: $ref: '#/definitions/model.ExaCustomer' - type: object produces: - application/json responses: @@ -1092,7 +1061,6 @@ paths: required: true schema: $ref: '#/definitions/model.ExaCustomer' - type: object produces: - application/json responses: @@ -1116,7 +1084,6 @@ paths: required: true schema: $ref: '#/definitions/request.PageInfo' - type: object produces: - application/json responses: @@ -1160,7 +1127,6 @@ paths: required: true schema: $ref: '#/definitions/model.ExaFileUploadAndDownload' - type: object produces: - application/json responses: @@ -1206,7 +1172,6 @@ paths: required: true schema: $ref: '#/definitions/request.PageInfo' - type: object produces: - application/json responses: @@ -1290,7 +1255,6 @@ paths: required: true schema: $ref: '#/definitions/request.AuthorityIdInfo' - type: object produces: - application/json responses: @@ -1314,7 +1278,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysBaseMenu' - type: object produces: - application/json responses: @@ -1338,7 +1301,6 @@ paths: required: true schema: $ref: '#/definitions/request.AddMenuAuthorityInfo' - type: object produces: - application/json responses: @@ -1362,7 +1324,6 @@ paths: required: true schema: $ref: '#/definitions/request.GetById' - type: object produces: - application/json responses: @@ -1386,7 +1347,6 @@ paths: required: true schema: $ref: '#/definitions/request.GetById' - type: object produces: - application/json responses: @@ -1408,7 +1368,6 @@ paths: required: true schema: $ref: '#/definitions/request.RegisterAndLoginStruct' - type: object produces: - application/json responses: @@ -1430,7 +1389,6 @@ paths: required: true schema: $ref: '#/definitions/request.RegisterAndLoginStruct' - type: object produces: - application/json responses: @@ -1454,7 +1412,6 @@ paths: required: true schema: $ref: '#/definitions/request.PageInfo' - type: object produces: - application/json responses: @@ -1478,7 +1435,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysBaseMenu' - type: object produces: - application/json responses: @@ -1559,7 +1515,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysDictionary' - type: object produces: - application/json responses: @@ -1583,7 +1538,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysDictionary' - type: object produces: - application/json responses: @@ -1607,7 +1561,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysDictionary' - type: object produces: - application/json responses: @@ -1631,7 +1584,6 @@ paths: required: true schema: $ref: '#/definitions/request.SysDictionarySearch' - type: object produces: - application/json responses: @@ -1655,7 +1607,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysDictionary' - type: object produces: - application/json responses: @@ -1679,7 +1630,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysDictionaryDetail' - type: object produces: - application/json responses: @@ -1703,7 +1653,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysDictionaryDetail' - type: object produces: - application/json responses: @@ -1727,7 +1676,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysDictionaryDetail' - type: object produces: - application/json responses: @@ -1751,7 +1699,6 @@ paths: required: true schema: $ref: '#/definitions/request.SysDictionaryDetailSearch' - type: object produces: - application/json responses: @@ -1775,7 +1722,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysDictionaryDetail' - type: object produces: - application/json responses: @@ -1799,7 +1745,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysOperationRecord' - type: object produces: - application/json responses: @@ -1823,7 +1768,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysOperationRecord' - type: object produces: - application/json responses: @@ -1847,7 +1791,6 @@ paths: required: true schema: $ref: '#/definitions/request.IdsReq' - type: object produces: - application/json responses: @@ -1871,7 +1814,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysOperationRecord' - type: object produces: - application/json responses: @@ -1895,7 +1837,6 @@ paths: required: true schema: $ref: '#/definitions/request.SysOperationRecordSearch' - type: object produces: - application/json responses: @@ -1908,30 +1849,6 @@ paths: summary: 分页获取SysOperationRecord列表 tags: - SysOperationRecord - /sysOperationRecord/updateSysOperationRecord: - put: - consumes: - - application/json - parameters: - - description: 更新SysOperationRecord - in: body - name: data - required: true - schema: - $ref: '#/definitions/model.SysOperationRecord' - type: object - produces: - - application/json - responses: - "200": - description: '{"success":true,"data":{},"msg":"更新成功"}' - schema: - type: string - security: - - ApiKeyAuth: [] - summary: 更新SysOperationRecord - tags: - - SysOperationRecord /system/ReloadSystem: post: parameters: @@ -1941,7 +1858,6 @@ paths: required: true schema: $ref: '#/definitions/model.System' - type: object produces: - application/json responses: @@ -1977,7 +1893,6 @@ paths: required: true schema: $ref: '#/definitions/model.System' - type: object produces: - application/json responses: @@ -1999,7 +1914,6 @@ paths: required: true schema: $ref: '#/definitions/request.ChangePasswordStruct' - type: object produces: - application/json responses: @@ -2023,7 +1937,6 @@ paths: required: true schema: $ref: '#/definitions/request.GetById' - type: object produces: - application/json responses: @@ -2047,7 +1960,6 @@ paths: required: true schema: $ref: '#/definitions/request.PageInfo' - type: object produces: - application/json responses: @@ -2071,7 +1983,6 @@ paths: required: true schema: $ref: '#/definitions/request.SetUserAuth' - type: object produces: - application/json responses: @@ -2084,33 +1995,6 @@ paths: summary: 设置用户权限 tags: - SysUser - /user/uploadHeaderImg: - post: - consumes: - - multipart/form-data - parameters: - - description: 用户上传头像 - in: formData - name: headerImg - required: true - type: file - - description: 用户上传头像 - in: formData - name: username - required: true - type: string - produces: - - application/json - responses: - "200": - description: '{"success":true,"data":{},"msg":"上传成功"}' - schema: - type: string - security: - - ApiKeyAuth: [] - summary: 用户上传头像 - tags: - - SysUser /workflow/createWorkFlow: post: parameters: @@ -2120,7 +2004,6 @@ paths: required: true schema: $ref: '#/definitions/model.SysWorkflow' - type: object produces: - application/json responses: diff --git a/server/go.mod b/server/go.mod index 9f82aad6..588472f5 100644 --- a/server/go.mod +++ b/server/go.mod @@ -39,9 +39,10 @@ require ( github.com/spf13/pflag v1.0.5 // indirect github.com/spf13/viper v1.6.2 github.com/swaggo/gin-swagger v1.2.0 - github.com/swaggo/swag v1.6.5 + github.com/swaggo/swag v1.6.7 github.com/tebeka/strftime v0.1.3 // indirect github.com/unrolled/secure v1.0.7 + github.com/urfave/cli v1.22.2 // indirect golang.org/x/net v0.0.0-20200320220750-118fecf932d8 // indirect golang.org/x/sys v0.0.0-20200610111108-226ff32320da // indirect golang.org/x/tools v0.0.0-20200324003944-a576cf524670 // indirect diff --git a/server/model/sys_api.go b/server/model/sys_api.go index 2ad4c400..a639d335 100644 --- a/server/model/sys_api.go +++ b/server/model/sys_api.go @@ -36,7 +36,6 @@ func SysApiData() []SysApi { {gorm.Model{ID: 19, CreatedAt: time.Now(), UpdatedAt: time.Now()}, "/menu/updateBaseMenu", "更新菜单", "menu", "POST"}, {gorm.Model{ID: 20, CreatedAt: time.Now(), UpdatedAt: time.Now()}, "/menu/getBaseMenuById", "根据id获取菜单", "menu", "POST"}, {gorm.Model{ID: 21, CreatedAt: time.Now(), UpdatedAt: time.Now()}, "/user/changePassword", "修改密码", "user", "POST"}, - {gorm.Model{ID: 22, CreatedAt: time.Now(), UpdatedAt: time.Now()}, "/user/uploadHeaderImg", "上传头像", "user", "POST"}, {gorm.Model{ID: 23, CreatedAt: time.Now(), UpdatedAt: time.Now()}, "/user/getUserList", "获取用户列表", "user", "POST"}, {gorm.Model{ID: 24, CreatedAt: time.Now(), UpdatedAt: time.Now()}, "/user/setUserAuthority", "修改用户角色", "user", "POST"}, {gorm.Model{ID: 25, CreatedAt: time.Now(), UpdatedAt: time.Now()}, "/fileUploadAndDownload/upload", "文件上传示例", "fileUploadAndDownload", "POST"}, diff --git a/server/model/sys_casbin.go b/server/model/sys_casbin.go index 2dc5d64c..4c78469e 100644 --- a/server/model/sys_casbin.go +++ b/server/model/sys_casbin.go @@ -33,7 +33,6 @@ func CasbinModelData() []CasbinModel { {"p", "888", "/menu/updateBaseMenu", "POST"}, {"p", "888", "/menu/getBaseMenuById", "POST"}, {"p", "888", "/user/changePassword", "POST"}, - {"p", "888", "/user/uploadHeaderImg", "POST"}, {"p", "888", "/user/getUserList", "POST"}, {"p", "888", "/user/setUserAuthority", "POST"}, {"p", "888", "/user/deleteUser", "DELETE"}, @@ -93,7 +92,6 @@ func CasbinModelData() []CasbinModel { {"p", "8881", "/menu/updateBaseMenu", "POST"}, {"p", "8881", "/menu/getBaseMenuById", "POST"}, {"p", "8881", "/user/changePassword", "POST"}, - {"p", "8881", "/user/uploadHeaderImg", "POST"}, {"p", "8881", "/user/getUserList", "POST"}, {"p", "8881", "/user/setUserAuthority", "POST"}, {"p", "8881", "/fileUploadAndDownload/upload", "POST"}, @@ -131,7 +129,6 @@ func CasbinModelData() []CasbinModel { {"p", "9528", "/menu/updateBaseMenu", "POST"}, {"p", "9528", "/menu/getBaseMenuById", "POST"}, {"p", "9528", "/user/changePassword", "POST"}, - {"p", "9528", "/user/uploadHeaderImg", "POST"}, {"p", "9528", "/user/getUserList", "POST"}, {"p", "9528", "/user/setUserAuthority", "POST"}, {"p", "9528", "/fileUploadAndDownload/upload", "POST"}, diff --git a/server/router/sys_user.go b/server/router/sys_user.go index b79502a6..88be4677 100644 --- a/server/router/sys_user.go +++ b/server/router/sys_user.go @@ -13,9 +13,9 @@ func InitUserRouter(Router *gin.RouterGroup) { Use(middleware.OperationRecord()) { UserRouter.POST("changePassword", v1.ChangePassword) // 修改密码 - UserRouter.POST("uploadHeaderImg", v1.UploadHeaderImg) // 上传头像 UserRouter.POST("getUserList", v1.GetUserList) // 分页获取用户列表 UserRouter.POST("setUserAuthority", v1.SetUserAuthority) // 设置用户权限 UserRouter.DELETE("deleteUser", v1.DeleteUser) // 删除用户 + UserRouter.PUT("setUserInfo", v1.SetUserInfo) // 设置用户信息 } } diff --git a/server/service/sys_user.go b/server/service/sys_user.go index 0fc6a04a..1c21e811 100644 --- a/server/service/sys_user.go +++ b/server/service/sys_user.go @@ -19,7 +19,7 @@ import ( func Register(u model.SysUser) (err error, userInter model.SysUser) { var user model.SysUser - if !errors.Is(global.GVA_DB.Where("username = ?", u.Username).First(&user).Error, gorm.ErrRecordNotFound){ // 判断用户名是否注册 + if !errors.Is(global.GVA_DB.Where("username = ?", u.Username).First(&user).Error, gorm.ErrRecordNotFound) { // 判断用户名是否注册 return errors.New("用户名已注册"), userInter } // 否则 附加uuid 密码md5简单加密 注册 @@ -101,16 +101,14 @@ func DeleteUser(id float64) (err error) { return err } -// @title UploadHeaderImg -// @description upload avatar, 用户头像上传更新地址 +// @title SetUserInfo +// @description set the authority of a certain user, 设置用户信息 // @auth (2020/04/05 20:22) // @param uuid UUID -// @param filePath string +// @param authorityId string // @return err error -// @return userInter *SysUser -func UploadHeaderImg(uuid uuid.UUID, filePath string) (err error, userInter *model.SysUser) { - var user model.SysUser - err = global.GVA_DB.Where("uuid = ?", uuid).First(&user).Update("header_img", filePath).First(&user).Error - return err, &user +func SetUserInfo(reqUser model.SysUser) (err error, user model.SysUser) { + err = global.GVA_DB.Updates(&reqUser).Error + return err, reqUser } -- GitLab