| 1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.DebugEntitys
- {
- public class HouseWellPhoto
- {
- public string tlSn { get; set; }
- public int houseSn { get; set; }
- public int wellSn { get; set; }
- /// <summary>
- /// 垂直电机位置
- /// </summary>
- public int verticalMotorPosition { get; set; }
- /// <summary>
- /// 当前拍照层数
- /// </summary>
- public int clearest { get; set; }
- /// <summary>
- /// 0表示自动对焦 1表示清晰图层 其余均为拍照图层
- /// </summary>
- public int positionType { get; set; }
- }
- }
|