From ad25c6742b6f80c9200a1477dcd5d8351f45baf8 Mon Sep 17 00:00:00 2001 From: wu Date: Thu, 13 Mar 2025 15:54:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=AF=8F=E5=A4=A9=E4=BD=BF=E7=94=A8=E6=AC=A1?= =?UTF-8?q?=E6=95=B0=E6=94=B9=E6=88=9050=E6=AC=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/ruoyi/web/controller/DeepSeekLogController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/DeepSeekLogController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/DeepSeekLogController.java index c5f2415..69ac1a5 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/DeepSeekLogController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/DeepSeekLogController.java @@ -136,7 +136,7 @@ public class DeepSeekLogController extends BaseController { // 判断时间是否是当天时间 if (DateUtil.isSameDay(latestAccessTime, new Date())) { dailyVisits = (int) map.get("dailyVisits") + 1; - if (dailyVisits > 10) { + if (dailyVisits > 50) { throw new ServiceException("用户试用次数已达上限"); } map.put("dailyVisits", dailyVisits);