Fix(ToolStore): Fix the bug that parameter platform is non-null

This commit is contained in:
2024-05-10 15:00:05 +08:00
parent f421bed793
commit 565bac9ebc

View File

@@ -32,5 +32,5 @@ data class ToolStoreGetParam(
* @see Platform * @see Platform
*/ */
@Schema(description = "指定平台", example = "DESKTOP") @Schema(description = "指定平台", example = "DESKTOP")
val platform: Platform val platform: Platform?
) : PageSortParam() ) : PageSortParam()