using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ResourceFlowWorker.Dto { internal class LivePageDto { /// /// 当前页码 /// [JsonPropertyName("currentPage")] public int? CurrentPage { get; set; } /// /// 每页记录数 /// [JsonPropertyName("pageSize")] public int? PageSize { get; set; } /// /// 列表数据 /// [JsonPropertyName("tableData")] public List TableData { get; set; } /// /// 总记录数 /// [JsonPropertyName("total")] public long Total { get; set; } } }