| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- 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; }
- /// <summary>
- /// 是否是最清晰的 0不是 1最清晰
- /// </summary>
- 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; }
- }
- }
|