| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.Result
- {
- public class DishPicAndVideo
- {
- public bool focus { get; set; }
- public int developTime { get; set; }
- public int wellSn { get; set; }
- public string lastPicture { get; set; } = string.Empty;
- public List<LayerPicAndVideo> videos { get; set; } = new List<LayerPicAndVideo>();
- }
- public class LayerPicAndVideo
- {
- public int pictureLayer { get; set; }
- public int fps { get; set; }
- public string videoUrl { get; set; } = string.Empty;
- public List<DetailPic> videoPictures { get; set; } = new List<DetailPic>();
- }
- public class DetailPic
- {
- public int developTime { get; set; }
- public int totalLayer { get; set; }
- public string imageUrl { get; set; }
- }
- public class DetailPicInfo
- {
- public long id { get; set; }
- public string imageUrl { get; set; }
- public long pictureUuid { get; set; }
- public int radius { get; set; }
- }
- public class EmbryoPicView
- {
- public int WellSn { get; set; }
- public List<LayerPictureView> pictureViews { get; set; } = new List<LayerPictureView>();
- }
- public class LayerPictureView
- {
- public int pictureLayer { get; set; }
- public List<PictureView> PictureViews { get; set; } = new List<PictureView>();
- }
- public class PictureView
- {
- public long id { get; set; }
- public string imageUrl { get; set; }
- public DateTime imageTime { get; set; }
- public int developTime { get; set; }
- }
- }
|