DishPicAndVideo.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 DishPicAndVideo
  9. {
  10. public bool focus { get; set; }
  11. public int developTime { get; set; }
  12. public int wellSn { get; set; }
  13. public string lastPicture { get; set; } = string.Empty;
  14. public List<LayerPicAndVideo> videos { get; set; } = new List<LayerPicAndVideo>();
  15. }
  16. public class LayerPicAndVideo
  17. {
  18. public int pictureLayer { get; set; }
  19. public int fps { get; set; }
  20. public string videoUrl { get; set; } = string.Empty;
  21. public List<DetailPic> videoPictures { get; set; } = new List<DetailPic>();
  22. }
  23. public class DetailPic
  24. {
  25. public int developTime { get; set; }
  26. public int totalLayer { get; set; }
  27. public string imageUrl { get; set; }
  28. }
  29. public class DetailPicInfo
  30. {
  31. public long id { get; set; }
  32. public string imageUrl { get; set; }
  33. public long pictureUuid { get; set; }
  34. public int radius { get; set; }
  35. }
  36. public class EmbryoPicView
  37. {
  38. public int WellSn { get; set; }
  39. public List<LayerPictureView> pictureViews { get; set; } = new List<LayerPictureView>();
  40. }
  41. public class LayerPictureView
  42. {
  43. public int pictureLayer { get; set; }
  44. public List<PictureView> PictureViews { get; set; } = new List<PictureView>();
  45. }
  46. public class PictureView
  47. {
  48. public long id { get; set; }
  49. public string imageUrl { get; set; }
  50. public DateTime imageTime { get; set; }
  51. public int developTime { get; set; }
  52. }
  53. }