From 6eec704b4980ee10ebb939157a65c44927d9cb95 Mon Sep 17 00:00:00 2001 From: zhongzb <972627721@qq.com> Date: Tue, 6 Jun 2023 20:25:45 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=91=E6=8E=A7=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../abin/mallchat/custom/chat/controller/ChatController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mallchat-custom-server/src/main/java/com/abin/mallchat/custom/chat/controller/ChatController.java b/mallchat-custom-server/src/main/java/com/abin/mallchat/custom/chat/controller/ChatController.java index bf89bd0..7febe58 100644 --- a/mallchat-custom-server/src/main/java/com/abin/mallchat/custom/chat/controller/ChatController.java +++ b/mallchat-custom-server/src/main/java/com/abin/mallchat/custom/chat/controller/ChatController.java @@ -105,7 +105,7 @@ public class ChatController { @PutMapping("/msg/mark") @ApiOperation("消息标记") - @FrequencyControl(time = 20, count = 3, target = FrequencyControl.Target.UID) + @FrequencyControl(time = 10, count = 5, target = FrequencyControl.Target.UID) public ApiResult setMsgMark(@Valid @RequestBody ChatMessageMarkReq request) { chatService.setMsgMark(RequestHolder.get().getUid(), request); return ApiResult.success();