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 { /// /// 通用分页返回 /// public class PageDataDto { /// /// 总页数 /// public int Total { get; set; } /// /// 数据集合 /// public List Datas { get; set; } } }