26 lines
535 B
C#
Raw Permalink Normal View History

2025-06-06 14:57:20 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_WeChatApplet.Commons.Dto
{
/// <summary>
/// 通用分页返回
/// </summary>
public class PageDataDto<T>
{
/// <summary>
/// 总页数
/// </summary>
public int Total { get; set; }
/// <summary>
/// 数据集合
/// </summary>
public List<T> Datas { get; set; }
}
}