using System.Collections.Generic; using Abp.Application.Services.Dto; namespace IwbZero.AppServiceBase { public interface IIwbPagedRequest : 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; } } public class MultiSearchDto { public virtual string KeyField { get; set; } public virtual string KeyWords { get; set; } public virtual int FieldType { get; set; } public virtual int ExpType { get; set; } } }