using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.Domain.Dto.LivePlayback { public class LivePlaybackPageDto { /// /// 当前页码 /// [JsonPropertyName("currentPage")] public long CurrentPage { get; set; } /// /// 每页记录数 /// [JsonPropertyName("pageSize")] public long PageSize { get; set; } /// /// 列表数据 /// [JsonPropertyName("tableData")] public List? TableData { get; set; } /// /// 汇总数据 /// [JsonPropertyName("statData")] public TStatData? StatData { get; set; } /// /// 总记录数 /// [JsonPropertyName("total")] public long Total { get; set; } } }