PictureView.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ivf_tl_Entity.GlobalEntitys
  7. {
  8. public class PictureView
  9. {
  10. public string imageUrl { get; set; }
  11. public DateTime imageTime { get; set; }
  12. public int developTime { get; set; }
  13. public string sourceImageUrl { get; set; }
  14. public int Num { get; set; }
  15. }
  16. public class HouseCropAlarmResponse
  17. {
  18. public string tlSn { get; set; }
  19. public List<HouseCropAlarmHouseResponse> houseList { get; set; } = new List<HouseCropAlarmHouseResponse>();
  20. }
  21. public class HouseCropAlarmHouseResponse
  22. {
  23. public int houseSn { get; set; }
  24. public string startTime { get; set; }
  25. }
  26. public class HouseCropAlarmResult
  27. {
  28. public int houseSn { get; set; }
  29. public string tlSn { get; set; }
  30. public List<int> wellSn { get; set; } = new List<int>();
  31. }
  32. }