From 72ad977dcbf689086edad5671832655abfc93395 Mon Sep 17 00:00:00 2001 From: xupei Date: Mon, 12 Jan 2026 11:55:43 +0800 Subject: [PATCH] =?UTF-8?q?BUGFIX:=20=E8=8E=B7=E5=8F=96=E8=BF=91=E6=9C=9F?= =?UTF-8?q?=E6=96=B0=E7=94=A8=E6=88=B7=E5=9B=BE=E8=A1=A8=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=85=81=E8=AE=B8userType=E4=B8=BAnull?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/ai/da/controller/ConvenientInquiryController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/ai/da/controller/ConvenientInquiryController.java b/src/main/java/com/ai/da/controller/ConvenientInquiryController.java index e4257c8f..cc3ba4ad 100644 --- a/src/main/java/com/ai/da/controller/ConvenientInquiryController.java +++ b/src/main/java/com/ai/da/controller/ConvenientInquiryController.java @@ -103,7 +103,7 @@ public class ConvenientInquiryController { @GetMapping("/recentNewUserChart") public Response> recentNewUserChart(@Parameter(description = "startTime") @RequestParam @Nullable String startTime, @Parameter(description = "endTime") @RequestParam @Nullable String endTime, - @Parameter(description = "userType") @RequestParam Integer userType) { + @Parameter(description = "userType") @RequestParam @Nullable Integer userType) { return Response.success(convenientInquiryService.recentNewUserChart(startTime, endTime, userType)); }