From 565bac9ebca6b18bc8af4c953947597b669efb4c Mon Sep 17 00:00:00 2001 From: FatttSnake Date: Fri, 10 May 2024 15:00:05 +0800 Subject: [PATCH] Fix(ToolStore): Fix the bug that parameter platform is non-null --- .../top/fatweb/oxygen/api/param/tool/ToolStoreGetParam.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/top/fatweb/oxygen/api/param/tool/ToolStoreGetParam.kt b/src/main/kotlin/top/fatweb/oxygen/api/param/tool/ToolStoreGetParam.kt index 413a893..5e645af 100644 --- a/src/main/kotlin/top/fatweb/oxygen/api/param/tool/ToolStoreGetParam.kt +++ b/src/main/kotlin/top/fatweb/oxygen/api/param/tool/ToolStoreGetParam.kt @@ -32,5 +32,5 @@ data class ToolStoreGetParam( * @see Platform */ @Schema(description = "指定平台", example = "DESKTOP") - val platform: Platform + val platform: Platform? ) : PageSortParam() -- 2.49.1