足力健后端,使用.netcore版本,合并1个项目使用
using System; using System.Collections.Generic; using System.Text; namespace System.Common { public class PageData<T> { public List<T> Rows { get; set; } public long Totals { get; set; } } }