HouseWellPhoto.cs 781 B

1234567891011121314151617181920212223242526272829303132
  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.DebugEntitys
  7. {
  8. public class HouseWellPhoto
  9. {
  10. public string tlSn { get; set; }
  11. public int houseSn { get; set; }
  12. public int wellSn { get; set; }
  13. /// <summary>
  14. /// 垂直电机位置
  15. /// </summary>
  16. public int verticalMotorPosition { get; set; }
  17. /// <summary>
  18. /// 当前拍照层数
  19. /// </summary>
  20. public int clearest { get; set; }
  21. /// <summary>
  22. /// 0表示自动对焦 1表示清晰图层 其余均为拍照图层
  23. /// </summary>
  24. public int positionType { get; set; }
  25. }
  26. }