using Abp.Application.Services.Dto; namespace VberZero.AppService.Base.Dto; public interface IVzPagedRequestDto : ILimitedResultRequest, ISortedResultRequest { int SkipCount { get; set; } string KeyField { get; set; } string KeyWords { get; set; } int FieldType { get; set; } int ExpType { get; set; } List SearchList { get; set; } }