using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ivf_tl_Entity.Entity { public class PictureEntity { public long id { get; set; } public int orderNum { get; set; } public int developTime { get; set; } public string imageUrl { get; set; } public string sourceImageUrl { get; set; } public DateTime imageTime { get; set; } public int pictureLayer { get; set; } public int totalLayer { get; set; } /// /// 是否是最清晰的 0不是 1最清晰 /// public int clearest { get; set; } public int radius { get; set; } public int sourceImageWidth { get; set; } public int sourceImageHeight { get; set; } public int wellSn { get; set; } public int shootingPosition { get; set; } } }