调整列表
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user