using Volo.Abp.Application.Dtos; namespace Yi.Framework.Ddd.Application.Contracts { /// /// 带时间范围的分页查询请求接口 /// public interface IPageTimeResultRequestDto : IPagedAndSortedResultRequest { /// /// 查询开始时间 /// DateTime? StartTime { get; set; } /// /// 查询结束时间 /// DateTime? EndTime { get; set; } } }