DishPicAndVideo.cs 970 B

123456789101112131415161718192021222324252627282930313233
  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 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. }