36 lines
840 B
C#
36 lines
840 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Domain.Dto.Live
|
|
{
|
|
public class LivePageDto<TTableData>
|
|
{
|
|
/// <summary>
|
|
/// 当前页码
|
|
/// </summary>
|
|
[JsonPropertyName("currentPage")]
|
|
public long CurrentPage { get; set; }
|
|
|
|
/// <summary>
|
|
/// 每页记录数
|
|
/// </summary>
|
|
[JsonPropertyName("pageSize")]
|
|
public long PageSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// 列表数据
|
|
/// </summary>
|
|
[JsonPropertyName("tableData")]
|
|
public List<TTableData> TableData { get; set; }
|
|
|
|
/// <summary>
|
|
/// 总记录数
|
|
/// </summary>
|
|
[JsonPropertyName("total")]
|
|
public long Total { get; set; }
|
|
}
|
|
}
|