using System.Text.Json.Serialization; namespace XFEExtension.NetCore.ServerInteractive.Models.RequesterModels; /// /// 表格请求结果 /// /// public class TableRequestResult where T : IIdModel { /// /// 数据列表 /// [JsonPropertyName("dataList")] public List DataList { get; set; } = []; /// /// 最后一页 /// [JsonPropertyName("lastPage")] public int LastPage { get; set; } /// /// 总计数量 /// [JsonPropertyName("totalCount")] public int TotalCount { get; set; } }