调整列表

This commit is contained in:
18942506660
2023-10-26 15:41:59 +08:00
parent bf665e81df
commit 918e4d203b
7 changed files with 85 additions and 32 deletions

View File

@@ -1,24 +0,0 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto
{
public class PaginationResponseDto<T>
{
public PaginationResponseDto(List<T> list, int? total)
{
this.List = list;
this.Total = total;
}
/// <summary>
/// 查询列表内容
/// </summary>
public List<T> List { get; set; } = new List<T>();
/// <summary>
/// 总条数
/// </summary>
public int? Total { get; set; }
}
}