IIwbPagedRequest.cs 444 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. using Abp.Application.Services.Dto;
  3. namespace IwbZero.AppServiceBase
  4. {
  5. public interface IIwbPagedRequest : ILimitedResultRequest, ISortedResultRequest
  6. {
  7. int SkipCount { get; set; }
  8. string KeyField { get; set; }
  9. string KeyWords { get; set; }
  10. int FieldType { get; set; }
  11. int ExpType { get; set; }
  12. List<MultiSearchDto> SearchList { get; set; }
  13. }
  14. }