项目代码/WMS/WIDESEA_WMSServer/WIDESEA_Core/BaseModels/PageGridData.cs
对比新文件 @@ -0,0 +1,26 @@ 锘縰sing System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Core { public class PageGridData<T> { public int Total { get; set; } public List<T> Rows { get; set; } public object Summary { get; set; } public PageGridData() { } public PageGridData(int total, List<T> rows) { Total = total; Rows = rows; } } }