IVzPagedRequestDto.cs 378 B

12345678910111213
  1. using Abp.Application.Services.Dto;
  2. namespace VberZero.AppService.Base.Dto;
  3. public interface IVzPagedRequestDto : ILimitedResultRequest, ISortedResultRequest
  4. {
  5. int SkipCount { get; set; }
  6. string KeyField { get; set; }
  7. string KeyWords { get; set; }
  8. int FieldType { get; set; }
  9. int ExpType { get; set; }
  10. List<MultiSearchDto> SearchList { get; set; }
  11. }