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)); }