diff --git a/Communications/SimApiBaseResponse.cs b/Communications/SimApiBaseResponse.cs
index 0e6f073..3837600 100644
--- a/Communications/SimApiBaseResponse.cs
+++ b/Communications/SimApiBaseResponse.cs
@@ -51,7 +51,7 @@ public class SimApiBaseResponse(int code = 200, string message = "成功")
///
public class PageResponse
{
- public T? List { get; set; }
+ public T[] List { get; set; } = [];
public int Page { get; set; } = 1;
public int Count { get; set; } = 20;
public int Total { get; set; }