AutoFocusPictureEntity.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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.Entity.Result
  7. {
  8. public class AutoFocusPictureEntity
  9. {
  10. public bool highestScore { get; set; }
  11. public int houseSn { get; set; }
  12. public long id { get; set; }
  13. public int imageHeight { get; set; }
  14. public string imageName { get; set; }
  15. public double imageScore { get; set; }
  16. public string imageTime { get; set; }
  17. public string imageUrl { get; set; }
  18. public int imageWidth { get; set; }
  19. public int pictureLayer { get; set; }
  20. public int shootingPosition { get; set; }
  21. public string sourceImageUrl { get; set; }
  22. public int totalLayer { get; set; }
  23. public int wellSn { get; set; }
  24. }
  25. public class AutoFocusResult
  26. {
  27. public string autofocusTime { get; set; }
  28. public bool end { get; set; }
  29. public List<AutoFocusPictureEntity> focusPreviewPictureVOList { get; set; } = new List<AutoFocusPictureEntity>();
  30. }
  31. }