using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.MsgTool.Domain.Dto { public 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; } } public class GroupPageDto { /// /// 当前页码 /// [JsonPropertyName("currentPage")] public string CurrentPage { get; set; } /// /// 每页记录数 /// [JsonPropertyName("pageSize")] public string PageSize { get; set; } /// /// 列表数据 /// [JsonPropertyName("tableData")] public List TableData { get; set; } /// /// 总记录数 /// [JsonPropertyName("total")] public long Total { get; set; } } }