CompFindModel.cs 717 B

123456789101112131415161718192021222324252627282930
  1. using MeterVision.Patch;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace MeterVision.model
  8. {
  9. public class CompFindModel
  10. {
  11. public CompFindType CompFindType { get; set; }
  12. public int PageNumber { get; set; }
  13. public int PageSize { get; set; }
  14. public string CompId { get; set; }
  15. public CompFindModel(int pageNumber,int pageSize,string compId,CompFindType compFindType)
  16. {
  17. CompFindType = compFindType;
  18. PageNumber = PageNumber;
  19. PageSize = pageSize;
  20. CompId = compId;
  21. }
  22. //---------------------------------------
  23. }
  24. }