PictureEntity.cs 982 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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
  7. {
  8. public class PictureEntity
  9. {
  10. public long id { get; set; }
  11. public int orderNum { get; set; }
  12. public int developTime { get; set; }
  13. public string imageUrl { get; set; }
  14. public string sourceImageUrl { get; set; }
  15. public DateTime imageTime { get; set; }
  16. public int pictureLayer { get; set; }
  17. public int totalLayer { get; set; }
  18. /// <summary>
  19. /// 是否是最清晰的 0不是 1最清晰
  20. /// </summary>
  21. public int clearest { get; set; }
  22. public int radius { get; set; }
  23. public int sourceImageWidth { get; set; }
  24. public int sourceImageHeight { get; set; }
  25. public int wellSn { get; set; }
  26. public int shootingPosition { get; set; }
  27. }
  28. }