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; }
///
/// 垂直电机位置
///
public int verticalMotorPosition { get; set; }
///
/// 当前拍照层数
///
public int clearest { get; set; }
///
/// 0表示自动对焦 1表示清晰图层 其余均为拍照图层
///
public int positionType { get; set; }
}
}