21 lines
373 B
C#
Raw Normal View History

2025-06-17 13:50:37 +08:00

namespace YD_AllHeartRates.Commons.Dto
{
/// <summary>
/// 通用分页返回
/// </summary>
public class PageDataDto<T>
{
/// <summary>
2025-06-30 14:50:22 +08:00
/// 总数
2025-06-17 13:50:37 +08:00
/// </summary>
public int Total { get; set; }
/// <summary>
/// 数据集合
/// </summary>
2025-06-30 14:50:22 +08:00
public List<T> Datas { get; set; }
2025-06-17 13:50:37 +08:00
}
}