MultiSearchDtoExt.cs 515 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using IwbZero.AppServiceBase;
  7. using ShwasherSys.Lambda;
  8. namespace ShwasherSys.Common.Dto
  9. {
  10. public class MultiSearchDtoExt: MultiSearchDto
  11. {
  12. //public string KeyField { get; set; }
  13. //public string KeyWords { get; set; }
  14. //public int FieldType { get; set; }
  15. //public int ExpType { get; set; }
  16. public int LogicType { get; set; } = 0;
  17. }
  18. }