mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
12 lines
313 B
C#
12 lines
313 B
C#
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Yi.Framework.Ddd.Application.Contracts
|
|
{
|
|
/// <summary>
|
|
/// 分页查询请求接口,包含时间范围和排序功能
|
|
/// </summary>
|
|
public interface IPagedAllResultRequestDto : IPageTimeResultRequestDto, IPagedAndSortedResultRequest
|
|
{
|
|
}
|
|
}
|