diff --git a/珞珈岛-项目相关文件/luojia-island/API.json b/珞珈岛-项目相关文件/luojia-island/API.json index c77291c..9bedbeb 100644 --- a/珞珈岛-项目相关文件/luojia-island/API.json +++ b/珞珈岛-项目相关文件/luojia-island/API.json @@ -2,7 +2,7 @@ "openapi": "3.0.0", "info": { "title": "珞珈岛API文档", - "description": "API文档", + "description": "珞珈岛社交平台API接口文档", "version": "1.0" }, "servers": [ @@ -100,7 +100,7 @@ "content": { "*/*": { "schema": { - "$ref": "#/components/schemas/ResultVoid" + "$ref": "#/components/schemas/ResultLong" } } } @@ -110,7 +110,7 @@ "content": { "*/*": { "schema": { - "$ref": "#/components/schemas/ResultVoid" + "$ref": "#/components/schemas/ResultLong" } } } @@ -229,7 +229,17 @@ ], "responses": { "200": { - "description": "OK", + "description": "操作成功", + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/ResultVoid" + } + } + } + }, + "500": { + "description": "操作失败,请稍后重试", "content": { "*/*": { "schema": { @@ -303,7 +313,7 @@ "content": { "*/*": { "schema": { - "$ref": "#/components/schemas/ResultVoid" + "$ref": "#/components/schemas/ResultLong" } } } @@ -313,7 +323,7 @@ "content": { "*/*": { "schema": { - "$ref": "#/components/schemas/ResultVoid" + "$ref": "#/components/schemas/ResultLong" } } } @@ -403,6 +413,61 @@ } } }, + "/user/verify-captcha": { + "post": { + "tags": [ + "用户管理" + ], + "summary": "验证图形验证码", + "description": "验证用户输入的图形验证码是否正确", + "operationId": "verifyCaptcha", + "parameters": [ + { + "name": "captchaKey", + "in": "cookie", + "required": false, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "验证码验证成功", + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/Result" + } + } + } + }, + "500": { + "description": "验证码已失效或验证码错误", + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/Result" + } + } + } + } + } + } + }, "/user/register": { "post": { "tags": [ @@ -639,49 +704,6 @@ } } }, - "/sendPrivateMessage": { - "post": { - "tags": [ - "聊天模块" - ], - "summary": "发送私信", - "description": "发送私信给指定用户", - "operationId": "sendPrivateMessage", - "parameters": [ - { - "name": "senderId", - "in": "query", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/MessageRequest" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string" - } - } - } - } - } - } - }, "/post/cover": { "post": { "tags": [ @@ -731,20 +753,38 @@ } } }, - "/post/of/me": { + "/user/captcha": { + "get": { + "tags": [ + "用户管理" + ], + "summary": "生成验证码图片", + "description": "生成图形验证码并设置Cookie存储captchaKey", + "operationId": "generateCaptcha", + "responses": { + "200": { + "description": "验证码生成成功" + }, + "500": { + "description": "验证码生成失败" + } + } + } + }, + "/post/user": { "get": { "tags": [ "帖子模块" ], - "summary": "查看自己的帖子", - "operationId": "pagePostOfMe", + "summary": "查看用户的帖子", + "operationId": "pagePostOfUser", "responses": { "200": { "description": "获取成功", "content": { "*/*": { "schema": { - "$ref": "#/components/schemas/ResultPageResponsePostBasicInfoDTO" + "$ref": "#/components/schemas/ResultScrollPageResponsePostBasicInfoDTO" } } } @@ -754,7 +794,7 @@ "content": { "*/*": { "schema": { - "$ref": "#/components/schemas/ResultPageResponsePostBasicInfoDTO" + "$ref": "#/components/schemas/ResultScrollPageResponsePostBasicInfoDTO" } } } @@ -775,7 +815,7 @@ "content": { "*/*": { "schema": { - "$ref": "#/components/schemas/ResultPageResponsePostBasicInfoDTO" + "$ref": "#/components/schemas/ResultScrollPageResponsePostBasicInfoDTO" } } } @@ -785,7 +825,7 @@ "content": { "*/*": { "schema": { - "$ref": "#/components/schemas/ResultPageResponsePostBasicInfoDTO" + "$ref": "#/components/schemas/ResultScrollPageResponsePostBasicInfoDTO" } } } @@ -835,6 +875,102 @@ } } }, + "/message/history": { + "get": { + "tags": [ + "聊天模块" + ], + "summary": "历史记录", + "description": "传入分页参数,获取与特定用户的完整聊天记录", + "operationId": "getChatHistory", + "responses": { + "200": { + "description": "获取成功", + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/ResultScrollPageResponseMessageResponse" + } + } + } + }, + "500": { + "description": "获取失败,请稍后重试", + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/ResultScrollPageResponseMessageResponse" + } + } + } + } + } + } + }, + "/message/chat-list": { + "get": { + "tags": [ + "聊天模块" + ], + "summary": "聊天列表", + "description": "传入分页参数,查询私信用户列表(带最新消息)", + "operationId": "getChatList", + "responses": { + "200": { + "description": "获取成功", + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/ResultScrollPageResponseChatItemDTO" + } + } + } + }, + "500": { + "description": "获取失败,请稍后重试", + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/ResultScrollPageResponseChatItemDTO" + } + } + } + } + } + } + }, + "/follow/post": { + "get": { + "tags": [ + "关注模块" + ], + "summary": "关注收件箱", + "description": "传入分页参数,查询关注的人的发帖推送", + "operationId": "queryPostFollow", + "responses": { + "200": { + "description": "获取成功", + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/ResultScrollPageResponsePostBasicInfoDTO" + } + } + } + }, + "500": { + "description": "获取失败,请稍后重试", + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/ResultScrollPageResponsePostBasicInfoDTO" + } + } + } + } + } + } + }, "/follow/or/not/{id}": { "get": { "tags": [ @@ -856,7 +992,17 @@ ], "responses": { "200": { - "description": "OK", + "description": "已关注", + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/ResultBoolean" + } + } + } + }, + "500": { + "description": "未关注", "content": { "*/*": { "schema": { @@ -873,8 +1019,8 @@ "tags": [ "关注模块" ], - "summary": "关注列表", - "description": "传入用户id,返回该用户的关注列表", + "summary": "共同关注", + "description": "传入用户id,返回该与该用户的共同关注", "operationId": "followCommons", "parameters": [ { @@ -889,7 +1035,17 @@ ], "responses": { "200": { - "description": "OK", + "description": "获取成功", + "content": { + "*/*": { + "schema": { + "$ref": "#/components/schemas/ResultListUserDTO" + } + } + } + }, + "500": { + "description": "获取失败,请稍后重试", "content": { "*/*": { "schema": { @@ -914,7 +1070,7 @@ "content": { "*/*": { "schema": { - "$ref": "#/components/schemas/ResultPageResponseCommentInfoDTO" + "$ref": "#/components/schemas/ResultScrollPageResponseCommentInfoDTO" } } } @@ -924,7 +1080,7 @@ "content": { "*/*": { "schema": { - "$ref": "#/components/schemas/ResultPageResponseCommentInfoDTO" + "$ref": "#/components/schemas/ResultScrollPageResponseCommentInfoDTO" } } } @@ -945,7 +1101,7 @@ "content": { "*/*": { "schema": { - "$ref": "#/components/schemas/ResultPageResponseCommentInfoDTO" + "$ref": "#/components/schemas/ResultScrollPageResponseCommentInfoDTO" } } } @@ -955,7 +1111,7 @@ "content": { "*/*": { "schema": { - "$ref": "#/components/schemas/ResultPageResponseCommentInfoDTO" + "$ref": "#/components/schemas/ResultScrollPageResponseCommentInfoDTO" } } } @@ -1056,18 +1212,31 @@ "parentCommentId": { "type": "integer", "format": "int64", - "description": "该评论的父评论id" - }, - "topId": { - "type": "integer", - "format": "int64", - "description": "该评论的顶级评论id" + "description": "该评论的父评论id,若不是回复则传入空值" } }, "required": [ "content" ] }, + "Result": { + "type": "object", + "description": "统一返回前端的结果", + "properties": { + "code": { + "type": "integer", + "format": "int32", + "description": "状态码" + }, + "msg": { + "type": "string", + "description": "提示消息" + }, + "data": { + "description": "响应数据" + } + } + }, "UserRegisterDTO": { "type": "object", "description": "用户注册DTO", @@ -1228,79 +1397,45 @@ } } }, - "MessageRequest": { + "ResultLong": { "type": "object", - "description": "消息请求对象", + "description": "统一返回前端的结果", "properties": { - "messageType": { + "code": { "type": "integer", "format": "int32", - "description": "消息类型,0-私信,1-系统通知", - "enum": [ - "0", - "1" - ], - "example": 0 + "description": "状态码" }, - "content": { + "msg": { "type": "string", - "description": "消息内容", - "maxLength": 500, - "minLength": 1 + "description": "提示消息" }, - "receiverId": { + "data": { "type": "integer", "format": "int64", - "description": "接收者ID" - }, - "senderName": { - "type": "string", - "description": "发送者用户名" - }, - "senderAvatar": { - "type": "string", - "description": "发送者头像" + "description": "响应数据" } - }, - "required": [ - "content", - "senderAvatar", - "senderName" - ] + } }, "PostPageQueryDTO": { "type": "object", "properties": { - "current": { + "lastVal": { "type": "integer", "format": "int64" }, - "size": { - "type": "integer", - "format": "int64" - } - } - }, - "PageResponsePostBasicInfoDTO": { - "type": "object", - "properties": { - "current": { + "offset": { "type": "integer", - "format": "int64" + "format": "int32" }, "size": { "type": "integer", "format": "int64" }, - "total": { + "userId": { "type": "integer", - "format": "int64" - }, - "records": { - "type": "array", - "items": { - "$ref": "#/components/schemas/PostBasicInfoDTO" - } + "format": "int64", + "description": "想要查看的用户的id,输入空时为自己的id" } } }, @@ -1360,13 +1495,18 @@ "userAvatar": { "type": "string", "description": "匿名情况下用户头像" + }, + "createTime": { + "type": "string", + "format": "date-time", + "description": "帖子创建时间" } }, "required": [ "title" ] }, - "ResultPageResponsePostBasicInfoDTO": { + "ResultScrollPageResponsePostBasicInfoDTO": { "type": "object", "description": "统一返回前端的结果", "properties": { @@ -1380,11 +1520,34 @@ "description": "提示消息" }, "data": { - "$ref": "#/components/schemas/PageResponsePostBasicInfoDTO", + "$ref": "#/components/schemas/ScrollPageResponsePostBasicInfoDTO", "description": "响应数据" } } }, + "ScrollPageResponsePostBasicInfoDTO": { + "type": "object", + "properties": { + "lastVal": { + "type": "integer", + "format": "int64" + }, + "offset": { + "type": "integer", + "format": "int32" + }, + "size": { + "type": "integer", + "format": "int64" + }, + "records": { + "type": "array", + "items": { + "$ref": "#/components/schemas/PostBasicInfoDTO" + } + } + } + }, "PostInfoDTO": { "type": "object", "description": "修改帖子信息", @@ -1448,6 +1611,11 @@ "userAvatar": { "type": "string", "description": "匿名情况下用户头像" + }, + "createTime": { + "type": "string", + "format": "date-time", + "description": "帖子创建时间" } }, "required": [ @@ -1455,6 +1623,201 @@ "title" ] }, + "ChatPageQueryDTO": { + "type": "object", + "properties": { + "lastVal": { + "type": "integer", + "format": "int64" + }, + "offset": { + "type": "integer", + "format": "int32" + }, + "size": { + "type": "integer", + "format": "int64" + }, + "chatUserId": { + "type": "integer", + "format": "int64" + } + } + }, + "MessageResponse": { + "type": "object", + "description": "消息返回对象", + "properties": { + "messageType": { + "type": "integer", + "format": "int32", + "description": "消息类型,0-私信,1-系统通知", + "enum": [ + "0", + "1" + ], + "example": 0 + }, + "content": { + "type": "string", + "description": "消息内容", + "maxLength": 500, + "minLength": 1 + }, + "senderId": { + "type": "integer", + "format": "int64", + "description": "发送者ID" + }, + "receiverId": { + "type": "integer", + "format": "int64", + "description": "接收者ID" + }, + "senderName": { + "type": "string", + "description": "发送者用户名" + }, + "senderAvatar": { + "type": "string", + "description": "发送者头像" + }, + "createTime": { + "type": "string", + "format": "date-time", + "description": "消息创建时间" + } + }, + "required": [ + "content", + "senderAvatar", + "senderName" + ] + }, + "ResultScrollPageResponseMessageResponse": { + "type": "object", + "description": "统一返回前端的结果", + "properties": { + "code": { + "type": "integer", + "format": "int32", + "description": "状态码" + }, + "msg": { + "type": "string", + "description": "提示消息" + }, + "data": { + "$ref": "#/components/schemas/ScrollPageResponseMessageResponse", + "description": "响应数据" + } + } + }, + "ScrollPageResponseMessageResponse": { + "type": "object", + "properties": { + "lastVal": { + "type": "integer", + "format": "int64" + }, + "offset": { + "type": "integer", + "format": "int32" + }, + "size": { + "type": "integer", + "format": "int64" + }, + "records": { + "type": "array", + "items": { + "$ref": "#/components/schemas/MessageResponse" + } + } + } + }, + "ChatItemDTO": { + "type": "object", + "description": "聊天列表项DTO", + "properties": { + "chatUserId": { + "type": "integer", + "format": "int64", + "description": "聊天对象的用户ID", + "example": 123456 + }, + "avatar": { + "type": "string", + "description": "聊天对象的头像URL", + "example": "https://example.com/avatar.jpg" + }, + "username": { + "type": "string", + "description": "聊天对象的用户名", + "example": "张三" + }, + "latestMessage": { + "type": "string", + "description": "最新消息内容", + "example": "今天下午开会", + "maxLength": 500 + }, + "latestTime": { + "type": "string", + "format": "date-time", + "description": "最新消息时间", + "example": "2023-10-15T14:30:00" + } + }, + "required": [ + "chatUserId", + "latestMessage", + "latestTime", + "username" + ] + }, + "ResultScrollPageResponseChatItemDTO": { + "type": "object", + "description": "统一返回前端的结果", + "properties": { + "code": { + "type": "integer", + "format": "int32", + "description": "状态码" + }, + "msg": { + "type": "string", + "description": "提示消息" + }, + "data": { + "$ref": "#/components/schemas/ScrollPageResponseChatItemDTO", + "description": "响应数据" + } + } + }, + "ScrollPageResponseChatItemDTO": { + "type": "object", + "properties": { + "lastVal": { + "type": "integer", + "format": "int64" + }, + "offset": { + "type": "integer", + "format": "int32" + }, + "size": { + "type": "integer", + "format": "int64" + }, + "records": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ChatItemDTO" + } + } + } + }, "ResultBoolean": { "type": "object", "description": "统一返回前端的结果", @@ -1499,10 +1862,14 @@ "CommentPageQueryDTO": { "type": "object", "properties": { - "current": { + "lastVal": { "type": "integer", "format": "int64" }, + "offset": { + "type": "integer", + "format": "int32" + }, "size": { "type": "integer", "format": "int64" @@ -1512,10 +1879,16 @@ "format": "int64", "title": "帖子ID" }, - "commentId": { + "parentCommentId": { "type": "integer", "format": "int64", "title": "评论ID" + }, + "orderByTime": { + "type": "boolean" + }, + "orderByHot": { + "type": "boolean" } }, "title": "分页查询评论请求DTO" @@ -1591,18 +1964,37 @@ } } }, - "PageResponseCommentInfoDTO": { + "ResultScrollPageResponseCommentInfoDTO": { "type": "object", + "description": "统一返回前端的结果", "properties": { - "current": { + "code": { "type": "integer", - "format": "int64" + "format": "int32", + "description": "状态码" }, - "size": { + "msg": { + "type": "string", + "description": "提示消息" + }, + "data": { + "$ref": "#/components/schemas/ScrollPageResponseCommentInfoDTO", + "description": "响应数据" + } + } + }, + "ScrollPageResponseCommentInfoDTO": { + "type": "object", + "properties": { + "lastVal": { "type": "integer", "format": "int64" }, - "total": { + "offset": { + "type": "integer", + "format": "int32" + }, + "size": { "type": "integer", "format": "int64" }, @@ -1613,25 +2005,6 @@ } } } - }, - "ResultPageResponseCommentInfoDTO": { - "type": "object", - "description": "统一返回前端的结果", - "properties": { - "code": { - "type": "integer", - "format": "int32", - "description": "状态码" - }, - "msg": { - "type": "string", - "description": "提示消息" - }, - "data": { - "$ref": "#/components/schemas/PageResponseCommentInfoDTO", - "description": "响应数据" - } - } } } } diff --git a/珞珈岛-项目相关文件/luojia-island/common/src/main/java/com/luojia_channel/common/config/OpenApiConfig.java b/珞珈岛-项目相关文件/luojia-island/common/src/main/java/com/luojia_channel/common/config/OpenApiConfig.java index 896bf44..59f10a4 100644 --- a/珞珈岛-项目相关文件/luojia-island/common/src/main/java/com/luojia_channel/common/config/OpenApiConfig.java +++ b/珞珈岛-项目相关文件/luojia-island/common/src/main/java/com/luojia_channel/common/config/OpenApiConfig.java @@ -9,13 +9,14 @@ import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration public class OpenApiConfig { + @Bean public OpenAPI customOpenAPI() { return new OpenAPI() .info(new Info() .title("珞珈岛API文档") + .description("珞珈岛社交平台API接口文档") .version("1.0") - .description("API文档") ); } } diff --git a/珞珈岛-项目相关文件/luojia-island/common/src/main/java/com/luojia_channel/common/config/WebMvcConfig.java b/珞珈岛-项目相关文件/luojia-island/common/src/main/java/com/luojia_channel/common/config/WebMvcConfig.java index d33736e..07715a6 100644 --- a/珞珈岛-项目相关文件/luojia-island/common/src/main/java/com/luojia_channel/common/config/WebMvcConfig.java +++ b/珞珈岛-项目相关文件/luojia-island/common/src/main/java/com/luojia_channel/common/config/WebMvcConfig.java @@ -22,7 +22,8 @@ public class WebMvcConfig implements WebMvcConfigurer { "/post/detail", "/comment/list", "/comment/list/reply", - "/openapi/luojia-channel" + "/openapi/luojia-channel", + "/swagger-ui.html" ); } diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/config/OpenApiConfig.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/config/OpenApiConfig.class index ccd2e33..c5efc10 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/config/OpenApiConfig.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/config/OpenApiConfig.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/config/RedisConfig.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/config/RedisConfig.class index 10d6bc4..658a2e9 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/config/RedisConfig.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/config/RedisConfig.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/config/WebMvcConfig.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/config/WebMvcConfig.class index b5d8b19..bb5e58f 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/config/WebMvcConfig.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/config/WebMvcConfig.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/Result.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/Result.class index 0292b1a..01b0a6a 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/Result.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/Result.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/UserDTO$UserDTOBuilder.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/UserDTO$UserDTOBuilder.class index 6c5d7b1..c9d7c99 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/UserDTO$UserDTOBuilder.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/UserDTO$UserDTOBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/UserDTO.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/UserDTO.class index de8ef17..17f4da3 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/UserDTO.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/UserDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/PageRequest.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/PageRequest.class index 1a6409b..f4e4065 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/PageRequest.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/PageRequest.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/PageResponse$PageResponseBuilder.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/PageResponse$PageResponseBuilder.class index 56c906f..906b8f4 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/PageResponse$PageResponseBuilder.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/PageResponse$PageResponseBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/PageResponse.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/PageResponse.class index fae755e..930ee6f 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/PageResponse.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/PageResponse.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/ScrollPageRequest.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/ScrollPageRequest.class index 9d88a5c..6d48ae6 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/ScrollPageRequest.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/ScrollPageRequest.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/ScrollPageResponse$ScrollPageResponseBuilder.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/ScrollPageResponse$ScrollPageResponseBuilder.class index 50b229a..60fef99 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/ScrollPageResponse$ScrollPageResponseBuilder.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/ScrollPageResponse$ScrollPageResponseBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/ScrollPageResponse.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/ScrollPageResponse.class index 5e96a99..2a7fa3b 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/ScrollPageResponse.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/domain/page/ScrollPageResponse.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/interceptor/AuthInterceptor.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/interceptor/AuthInterceptor.class index 8ee05b1..0f5c82c 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/interceptor/AuthInterceptor.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/interceptor/AuthInterceptor.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/JWTUtil.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/JWTUtil.class index 2810290..96e8a6e 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/JWTUtil.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/JWTUtil.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/PageUtil.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/PageUtil.class index 49acd38..041869d 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/PageUtil.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/PageUtil.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/RedisUtil$ZSetItem.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/RedisUtil$ZSetItem.class index 3aa31a2..671ebf5 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/RedisUtil$ZSetItem.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/RedisUtil$ZSetItem.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/RedisUtil.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/RedisUtil.class index 6f92bd9..62c55d7 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/RedisUtil.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/RedisUtil.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/UserContext.class b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/UserContext.class index c140c14..700abd7 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/UserContext.class and b/珞珈岛-项目相关文件/luojia-island/common/target/classes/com/luojia_channel/common/utils/UserContext.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/src/main/java/com/luojia_channel/modules/interact/controller/ChatController.java b/珞珈岛-项目相关文件/luojia-island/service/src/main/java/com/luojia_channel/modules/interact/controller/ChatController.java index ded9eb2..236337f 100644 --- a/珞珈岛-项目相关文件/luojia-island/service/src/main/java/com/luojia_channel/modules/interact/controller/ChatController.java +++ b/珞珈岛-项目相关文件/luojia-island/service/src/main/java/com/luojia_channel/modules/interact/controller/ChatController.java @@ -8,6 +8,9 @@ import com.luojia_channel.modules.interact.dto.ChatPageQueryDTO; import com.luojia_channel.modules.interact.service.ChatService; import com.luojia_channel.modules.message.dto.MessageResponse; import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.responses.ApiResponses; +import io.swagger.v3.oas.annotations.tags.Tag; import lombok.RequiredArgsConstructor; import org.springframework.web.bind.annotation.*; @@ -15,15 +18,19 @@ import org.springframework.web.bind.annotation.*; @RestController @RequestMapping("/message") @RequiredArgsConstructor +@Tag(name = "聊天模块", description = "好友聊天模块相关接口") public class ChatController { private final ChatService chatService; @Operation( summary = "聊天列表", description = "传入分页参数,查询私信用户列表(带最新消息)", - tags = {"私信模块"} + tags = {"聊天模块"} ) - + @ApiResponses(value = { + @ApiResponse(responseCode = "200", description = "获取成功"), + @ApiResponse(responseCode = "500", description = "获取失败,请稍后重试") + }) @GetMapping("/chat-list") public Result> getChatList(@RequestBody ChatPageQueryDTO chatPageQueryDTO) { return Result.success(chatService.getChatList(chatPageQueryDTO)); @@ -32,8 +39,12 @@ public class ChatController { @Operation( summary = "历史记录", description = "传入分页参数,获取与特定用户的完整聊天记录", - tags = {"关注模块"} + tags = {"聊天模块"} ) + @ApiResponses(value = { + @ApiResponse(responseCode = "200", description = "获取成功"), + @ApiResponse(responseCode = "500", description = "获取失败,请稍后重试") + }) @GetMapping("/history") public Result> getChatHistory(@RequestBody ChatPageQueryDTO chatPageQueryDTO) { return Result.success(chatService.getChatHistory(chatPageQueryDTO)); diff --git a/珞珈岛-项目相关文件/luojia-island/service/src/main/java/com/luojia_channel/modules/interact/controller/FollowController.java b/珞珈岛-项目相关文件/luojia-island/service/src/main/java/com/luojia_channel/modules/interact/controller/FollowController.java index d033986..3ebd9a9 100644 --- a/珞珈岛-项目相关文件/luojia-island/service/src/main/java/com/luojia_channel/modules/interact/controller/FollowController.java +++ b/珞珈岛-项目相关文件/luojia-island/service/src/main/java/com/luojia_channel/modules/interact/controller/FollowController.java @@ -8,6 +8,8 @@ import com.luojia_channel.modules.interact.service.FollowService; import com.luojia_channel.modules.post.dto.req.PostPageQueryDTO; import com.luojia_channel.modules.post.dto.resp.PostBasicInfoDTO; import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.responses.ApiResponse; +import io.swagger.v3.oas.annotations.responses.ApiResponses; import io.swagger.v3.oas.annotations.tags.Tag; import lombok.RequiredArgsConstructor; import org.springframework.beans.factory.annotation.Autowired; @@ -28,6 +30,10 @@ public class FollowController { description = "关注用户,传入用户id和是否关注的状态", tags = {"关注模块"} ) + @ApiResponses(value = { + @ApiResponse(responseCode = "200", description = "操作成功"), + @ApiResponse(responseCode = "500", description = "操作失败,请稍后重试") + }) public Result follow(@PathVariable("id") Long followUserId, @PathVariable("isFollow") Boolean isFollow){ followService.follow(followUserId, isFollow); return Result.success(); @@ -38,6 +44,10 @@ public class FollowController { description = "传入用户id,返回是否关注该用户", tags = {"关注模块"} ) + @ApiResponses(value = { + @ApiResponse(responseCode = "200", description = "已关注"), + @ApiResponse(responseCode = "500", description = "未关注") + }) public Result isFollow(@PathVariable("id") Long followUserId){ return Result.success(followService.isFollow(followUserId)); } @@ -47,6 +57,10 @@ public class FollowController { description = "传入用户id,返回该与该用户的共同关注", tags = {"关注模块"} ) + @ApiResponses(value = { + @ApiResponse(responseCode = "200", description = "获取成功"), + @ApiResponse(responseCode = "500", description = "获取失败,请稍后重试") + }) public Result> followCommons(@PathVariable("id") Long id){ return Result.success(followService.followCommons(id)); } @@ -57,6 +71,10 @@ public class FollowController { description = "传入分页参数,查询关注的人的发帖推送", tags = {"关注模块"} ) + @ApiResponses(value = { + @ApiResponse(responseCode = "200", description = "获取成功"), + @ApiResponse(responseCode = "500", description = "获取失败,请稍后重试") + }) public Result> queryPostFollow(@RequestBody PostPageQueryDTO postPageQueryDTO){ return Result.success(followService.queryPostFollow(postPageQueryDTO)); } diff --git a/珞珈岛-项目相关文件/luojia-island/service/src/main/java/com/luojia_channel/modules/user/controller/UserLoginController.java b/珞珈岛-项目相关文件/luojia-island/service/src/main/java/com/luojia_channel/modules/user/controller/UserLoginController.java index 057fadf..471041a 100644 --- a/珞珈岛-项目相关文件/luojia-island/service/src/main/java/com/luojia_channel/modules/user/controller/UserLoginController.java +++ b/珞珈岛-项目相关文件/luojia-island/service/src/main/java/com/luojia_channel/modules/user/controller/UserLoginController.java @@ -88,8 +88,14 @@ public class UserLoginController { */ @GetMapping("/captcha") @Operation( - summary = "生成验证码图片" + summary = "生成验证码图片", + description = "生成图形验证码并设置Cookie存储captchaKey", + tags = {"用户管理"} ) + @ApiResponses(value = { + @ApiResponse(responseCode = "200", description = "验证码生成成功"), + @ApiResponse(responseCode = "500", description = "验证码生成失败") + }) public void generateCaptcha(HttpServletRequest request, HttpServletResponse res) throws IOException { @@ -114,7 +120,18 @@ public class UserLoginController { * @return */ @PostMapping("/verify-captcha") - public Result verifyCaptcha(@RequestBody Map params, @CookieValue(value = "captchaKey", required = false) String captchaKey, HttpSession session) { + @Operation( + summary = "验证图形验证码", + description = "验证用户输入的图形验证码是否正确", + tags = {"用户管理"} + ) + @ApiResponses(value = { + @ApiResponse(responseCode = "200", description = "验证码验证成功"), + @ApiResponse(responseCode = "500", description = "验证码已失效或验证码错误") + }) + public Result verifyCaptcha(@RequestBody Map params, + @CookieValue(value = "captchaKey", required = false) String captchaKey, + HttpSession session) { String captcha = params.get("captcha"); if (captchaKey == null) { diff --git a/珞珈岛-项目相关文件/luojia-island/service/src/main/resources/application-local.yaml b/珞珈岛-项目相关文件/luojia-island/service/src/main/resources/application-local.yaml index c163548..4fbcddd 100644 --- a/珞珈岛-项目相关文件/luojia-island/service/src/main/resources/application-local.yaml +++ b/珞珈岛-项目相关文件/luojia-island/service/src/main/resources/application-local.yaml @@ -1,36 +1,36 @@ #本地开发环境 -# lj: -# db: -# host: localhost -# password: 123456 -# redis: -# host: localhost -# port: 6379 -# password: 123456 -# rabbitmq: -# host: localhost -# port: 15672 -# username: root -# password: 123456 -# minio: -# endpoint: http://localhost:9000 -# accessKey: minioadmin -# secretKey: minioadmin + lj: + db: + host: localhost + password: 123456 + redis: + host: localhost + port: 6379 + password: 123456 + rabbitmq: + host: localhost + port: 15672 + username: root + password: 123456 + minio: + endpoint: http://localhost:9000 + accessKey: minioadmin + secretKey: minioadmin -lj: - db: - host: 192.168.59.129 - password: Forely123! - redis: - host: 192.168.59.129 - port: 6379 - password: Forely123! - rabbitmq: - host: 192.168.59.129 - port: 5672 - username: admin - password: Forely123! - minio: - endpoint: http://192.168.59.129:9000 - accessKey: forely - secretKey: Forely123! +#lj: +# db: +# host: 192.168.59.129 +# password: Forely123! +# redis: +# host: 192.168.59.129 +# port: 6379 +# password: Forely123! +# rabbitmq: +# host: 192.168.59.129 +# port: 5672 +# username: admin +# password: Forely123! +# minio: +# endpoint: http://192.168.59.129:9000 +# accessKey: forely +# secretKey: Forely123! diff --git a/珞珈岛-项目相关文件/luojia-island/service/src/main/resources/application.yaml b/珞珈岛-项目相关文件/luojia-island/service/src/main/resources/application.yaml index a4a4521..98f84c6 100644 --- a/珞珈岛-项目相关文件/luojia-island/service/src/main/resources/application.yaml +++ b/珞珈岛-项目相关文件/luojia-island/service/src/main/resources/application.yaml @@ -3,6 +3,13 @@ server: springdoc: api-docs: path: /openapi/luojia-channel + swagger-ui: + path: /swagger-ui.html + disable-swagger-default-url: true + tags-sorter: alpha + operations-sorter: alpha + packages-to-scan: com.luojia_channel.modules + paths-to-match: /user/**, /post/**, /comment/**, /message/**, /follow/**, /file/** spring: application: name: service diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/application-local.yaml b/珞珈岛-项目相关文件/luojia-island/service/target/classes/application-local.yaml index c163548..4fbcddd 100644 --- a/珞珈岛-项目相关文件/luojia-island/service/target/classes/application-local.yaml +++ b/珞珈岛-项目相关文件/luojia-island/service/target/classes/application-local.yaml @@ -1,36 +1,36 @@ #本地开发环境 -# lj: -# db: -# host: localhost -# password: 123456 -# redis: -# host: localhost -# port: 6379 -# password: 123456 -# rabbitmq: -# host: localhost -# port: 15672 -# username: root -# password: 123456 -# minio: -# endpoint: http://localhost:9000 -# accessKey: minioadmin -# secretKey: minioadmin + lj: + db: + host: localhost + password: 123456 + redis: + host: localhost + port: 6379 + password: 123456 + rabbitmq: + host: localhost + port: 15672 + username: root + password: 123456 + minio: + endpoint: http://localhost:9000 + accessKey: minioadmin + secretKey: minioadmin -lj: - db: - host: 192.168.59.129 - password: Forely123! - redis: - host: 192.168.59.129 - port: 6379 - password: Forely123! - rabbitmq: - host: 192.168.59.129 - port: 5672 - username: admin - password: Forely123! - minio: - endpoint: http://192.168.59.129:9000 - accessKey: forely - secretKey: Forely123! +#lj: +# db: +# host: 192.168.59.129 +# password: Forely123! +# redis: +# host: 192.168.59.129 +# port: 6379 +# password: Forely123! +# rabbitmq: +# host: 192.168.59.129 +# port: 5672 +# username: admin +# password: Forely123! +# minio: +# endpoint: http://192.168.59.129:9000 +# accessKey: forely +# secretKey: Forely123! diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/application.yaml b/珞珈岛-项目相关文件/luojia-island/service/target/classes/application.yaml index a4a4521..98f84c6 100644 --- a/珞珈岛-项目相关文件/luojia-island/service/target/classes/application.yaml +++ b/珞珈岛-项目相关文件/luojia-island/service/target/classes/application.yaml @@ -3,6 +3,13 @@ server: springdoc: api-docs: path: /openapi/luojia-channel + swagger-ui: + path: /swagger-ui.html + disable-swagger-default-url: true + tags-sorter: alpha + operations-sorter: alpha + packages-to-scan: com.luojia_channel.modules + paths-to-match: /user/**, /post/**, /comment/**, /message/**, /follow/**, /file/** spring: application: name: service diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/CompleteUploadDTO$CompleteUploadDTOBuilder.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/CompleteUploadDTO$CompleteUploadDTOBuilder.class index 08e5e9d..5fdce66 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/CompleteUploadDTO$CompleteUploadDTOBuilder.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/CompleteUploadDTO$CompleteUploadDTOBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/CompleteUploadDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/CompleteUploadDTO.class index e12c4ea..e7e5572 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/CompleteUploadDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/CompleteUploadDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadChunkDTO$UploadChunkDTOBuilder.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadChunkDTO$UploadChunkDTOBuilder.class index 6fb9feb..2190746 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadChunkDTO$UploadChunkDTOBuilder.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadChunkDTO$UploadChunkDTOBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadChunkDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadChunkDTO.class index 7c6b1d8..7158ade 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadChunkDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadChunkDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadFileDTO$UploadFileDTOBuilder.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadFileDTO$UploadFileDTOBuilder.class index f24cc7f..0b1c7bf 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadFileDTO$UploadFileDTOBuilder.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadFileDTO$UploadFileDTOBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadFileDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadFileDTO.class index 00e35ec..55b8640 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadFileDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/dto/UploadFileDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/entity/LjFile$LjFileBuilder.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/entity/LjFile$LjFileBuilder.class index d2d69f7..b7bf51f 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/entity/LjFile$LjFileBuilder.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/entity/LjFile$LjFileBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/entity/LjFile.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/entity/LjFile.class index 016ed9f..f5d7a2e 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/entity/LjFile.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/entity/LjFile.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/service/impl/FileServiceImpl.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/service/impl/FileServiceImpl.class index 1f614e4..0543b86 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/service/impl/FileServiceImpl.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/service/impl/FileServiceImpl.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/utils/ValidateFileUtil.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/utils/ValidateFileUtil.class index 173e9f7..0c6409e 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/utils/ValidateFileUtil.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/file/utils/ValidateFileUtil.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/controller/ChatController.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/controller/ChatController.class index 60e4aef..ee91dc7 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/controller/ChatController.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/controller/ChatController.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/controller/FollowController.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/controller/FollowController.class index b27532a..683f787 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/controller/FollowController.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/controller/FollowController.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/dto/ChatItemDTO$ChatItemDTOBuilder.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/dto/ChatItemDTO$ChatItemDTOBuilder.class index 2e60c67..657dc04 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/dto/ChatItemDTO$ChatItemDTOBuilder.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/dto/ChatItemDTO$ChatItemDTOBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/dto/ChatItemDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/dto/ChatItemDTO.class index a64bf90..cb45797 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/dto/ChatItemDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/dto/ChatItemDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/dto/ChatPageQueryDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/dto/ChatPageQueryDTO.class index a1c351b..81a8952 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/dto/ChatPageQueryDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/dto/ChatPageQueryDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/entity/Follow.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/entity/Follow.class index cb30d4d..9f48183 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/entity/Follow.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/entity/Follow.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/service/impl/ChatServiceImpl.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/service/impl/ChatServiceImpl.class index d582c9f..7b308f7 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/service/impl/ChatServiceImpl.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/service/impl/ChatServiceImpl.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/service/impl/FollowServiceImpl.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/service/impl/FollowServiceImpl.class index 8b9c27e..a35dc8f 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/service/impl/FollowServiceImpl.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/interact/service/impl/FollowServiceImpl.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageRequest$MessageRequestBuilder.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageRequest$MessageRequestBuilder.class index 281ac1d..8fb836b 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageRequest$MessageRequestBuilder.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageRequest$MessageRequestBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageRequest.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageRequest.class index 2afa86d..9d5b67e 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageRequest.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageRequest.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageResponse$MessageResponseBuilder.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageResponse$MessageResponseBuilder.class index 9243d62..87e59f3 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageResponse$MessageResponseBuilder.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageResponse$MessageResponseBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageResponse.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageResponse.class index 96c789a..e373231 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageResponse.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/dto/MessageResponse.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/entity/MessageDO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/entity/MessageDO.class index 84847ae..1347a1d 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/entity/MessageDO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/entity/MessageDO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/AbstractSendProduceTemplate.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/AbstractSendProduceTemplate.class index cb56f9d..9d10011 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/AbstractSendProduceTemplate.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/AbstractSendProduceTemplate.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/BaseSendExtendDTO$BaseSendExtendDTOBuilder.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/BaseSendExtendDTO$BaseSendExtendDTOBuilder.class index e01512b..acad21c 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/BaseSendExtendDTO$BaseSendExtendDTOBuilder.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/BaseSendExtendDTO$BaseSendExtendDTOBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/BaseSendExtendDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/BaseSendExtendDTO.class index 4a1f3d2..c1f317a 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/BaseSendExtendDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/BaseSendExtendDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/MessageWrapper$MessageWrapperBuilder.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/MessageWrapper$MessageWrapperBuilder.class index a62f142..19d371c 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/MessageWrapper$MessageWrapperBuilder.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/MessageWrapper$MessageWrapperBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/MessageWrapper.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/MessageWrapper.class index 17c6378..68ade87 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/MessageWrapper.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/MessageWrapper.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/domain/NotificationMessage$NotificationMessageBuilder.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/domain/NotificationMessage$NotificationMessageBuilder.class index 4b2e805..87221b3 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/domain/NotificationMessage$NotificationMessageBuilder.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/domain/NotificationMessage$NotificationMessageBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/domain/NotificationMessage.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/domain/NotificationMessage.class index d535fb2..69fa888 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/domain/NotificationMessage.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/mq/domain/NotificationMessage.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/server/WebSocketServer.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/server/WebSocketServer.class index 362c2be..3d9d96c 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/server/WebSocketServer.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/message/server/WebSocketServer.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/CommentPageQueryDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/CommentPageQueryDTO.class index 69d29c3..da3af5e 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/CommentPageQueryDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/CommentPageQueryDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/CommentSaveDTO$CommentSaveDTOBuilder.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/CommentSaveDTO$CommentSaveDTOBuilder.class index 257b14f..92307bd 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/CommentSaveDTO$CommentSaveDTOBuilder.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/CommentSaveDTO$CommentSaveDTOBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/CommentSaveDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/CommentSaveDTO.class index b7f6fa4..ee56bff 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/CommentSaveDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/CommentSaveDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/PostPageQueryDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/PostPageQueryDTO.class index 9b83d83..557d7b7 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/PostPageQueryDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/PostPageQueryDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/PostSaveDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/PostSaveDTO.class index cf61e46..b265d63 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/PostSaveDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/req/PostSaveDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/CommentInfoDTO$CommentInfoDTOBuilder.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/CommentInfoDTO$CommentInfoDTOBuilder.class index 3775f2c..8e887e3 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/CommentInfoDTO$CommentInfoDTOBuilder.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/CommentInfoDTO$CommentInfoDTOBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/CommentInfoDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/CommentInfoDTO.class index 75735d3..2166613 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/CommentInfoDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/CommentInfoDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/PostBasicInfoDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/PostBasicInfoDTO.class index fd95817..0631241 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/PostBasicInfoDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/PostBasicInfoDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/PostInfoDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/PostInfoDTO.class index 56161c4..a3e90a7 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/PostInfoDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/dto/resp/PostInfoDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Comment$CommentBuilder.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Comment$CommentBuilder.class index 6f7d7fa..38040fc 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Comment$CommentBuilder.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Comment$CommentBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Comment.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Comment.class index 31431b9..ebe5d44 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Comment.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Comment.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Post$PostBuilder.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Post$PostBuilder.class index 045d2f8..6a40318 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Post$PostBuilder.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Post$PostBuilder.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Post.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Post.class index 3d64655..e659d75 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Post.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/entity/Post.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/service/impl/CommentServiceImpl.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/service/impl/CommentServiceImpl.class index 85a784e..d4bdf59 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/service/impl/CommentServiceImpl.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/service/impl/CommentServiceImpl.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/service/impl/PostServiceImpl.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/service/impl/PostServiceImpl.class index 966fdee..3360cc4 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/service/impl/PostServiceImpl.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/post/service/impl/PostServiceImpl.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/search/entity/EsPost.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/search/entity/EsPost.class index 1e51dd4..bc348e6 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/search/entity/EsPost.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/search/entity/EsPost.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/search/entity/EsUser.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/search/entity/EsUser.class index bc5cd6b..24d3296 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/search/entity/EsUser.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/search/entity/EsUser.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/controller/UserLoginController.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/controller/UserLoginController.class index 809a24b..1dcb6d2 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/controller/UserLoginController.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/controller/UserLoginController.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/dto/UserChangeInfoDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/dto/UserChangeInfoDTO.class index 89d1e74..b267107 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/dto/UserChangeInfoDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/dto/UserChangeInfoDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/dto/UserLoginDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/dto/UserLoginDTO.class index b1c90bb..a446c9e 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/dto/UserLoginDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/dto/UserLoginDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/dto/UserRegisterDTO.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/dto/UserRegisterDTO.class index e331e0b..fa0acf3 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/dto/UserRegisterDTO.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/dto/UserRegisterDTO.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/entity/User.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/entity/User.class index 0dac3fc..2a6f89d 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/entity/User.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/entity/User.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/service/impl/UserLoginServiceImpl.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/service/impl/UserLoginServiceImpl.class index c303f83..59625b9 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/service/impl/UserLoginServiceImpl.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/service/impl/UserLoginServiceImpl.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/utils/AnonymousUserUtil.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/utils/AnonymousUserUtil.class index e5ccb7d..99b7971 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/utils/AnonymousUserUtil.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/utils/AnonymousUserUtil.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/utils/CaptchaUtils.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/utils/CaptchaUtils.class index d0ad118..56e9f62 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/utils/CaptchaUtils.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/utils/CaptchaUtils.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/utils/ValidateUserUtil.class b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/utils/ValidateUserUtil.class index b956abb..ab9b817 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/utils/ValidateUserUtil.class and b/珞珈岛-项目相关文件/luojia-island/service/target/classes/com/luojia_channel/modules/user/utils/ValidateUserUtil.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/test-classes/com/luojia_channel/FileServiceTests.class b/珞珈岛-项目相关文件/luojia-island/service/target/test-classes/com/luojia_channel/FileServiceTests.class index 5793fba..1ad03c7 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/test-classes/com/luojia_channel/FileServiceTests.class and b/珞珈岛-项目相关文件/luojia-island/service/target/test-classes/com/luojia_channel/FileServiceTests.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/service/target/test-classes/com/luojia_channel/LuojiaChannelApplicationTests.class b/珞珈岛-项目相关文件/luojia-island/service/target/test-classes/com/luojia_channel/LuojiaChannelApplicationTests.class index 9b8f13e..bc5005f 100644 Binary files a/珞珈岛-项目相关文件/luojia-island/service/target/test-classes/com/luojia_channel/LuojiaChannelApplicationTests.class and b/珞珈岛-项目相关文件/luojia-island/service/target/test-classes/com/luojia_channel/LuojiaChannelApplicationTests.class differ diff --git a/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/components/Header.vue b/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/components/Header.vue index cc6274d..4e2c52f 100644 --- a/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/components/Header.vue +++ b/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/components/Header.vue @@ -113,7 +113,7 @@ const goToProfile = () => { const logout = () => { userStore.logout(); - router.push({ name: 'Home' }); // 跳转到首页 + router.push({ name: 'MainPage' }); // 跳转到首页 isDropdownVisible.value = false; // }; diff --git a/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/components/Login.vue b/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/components/Login.vue index 4bf7a57..b26f98a 100644 --- a/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/components/Login.vue +++ b/珞珈岛-项目相关文件/luojia-island/vue-frontend/src/components/Login.vue @@ -215,7 +215,7 @@ async function login() { localStorage.setItem('refreshToken', refreshToken); userStore.login({ - avatar: '/assets/default-avatar/boy_1.png', + avatar:require ('@/assets/default-avatar/boy_1.png'), userName: '珈人一号', userid:1 });