IPagedRequest.cs 636 B

12345678910111213141516171819202122
  1. using System.Collections.Generic;
  2. using Abp.Application.Services.Dto;
  3. namespace IwbZero.AppServiceBase
  4. {
  5. public interface IPagedRequest : ILimitedResultRequest
  6. {
  7. string Sorting { get; set; }
  8. int SkipCount { get; set; }
  9. string KeyField { get; set; }
  10. string KeyWords { get; set; }
  11. List<MultiSearchDto> SearchList { get; set; }
  12. }
  13. public class MultiSearchDto
  14. {
  15. public virtual string KeyField { get; set; }
  16. public virtual string KeyWords { get; set; }
  17. public virtual int FieldType { get; set; }
  18. public virtual int ExpType { get; set; }
  19. }
  20. }