using DataEntity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XImagingXhandler.XDAL { /// /// 成像偏移设置类 /// public class CameraSet : IEntity { private double _xAxisOffsetVal = 0d; /// /// 成像整体X轴偏移(毫米) /// public double xAxisOffsetVal { get { return _xAxisOffsetVal; } set { _xAxisOffsetVal = value; OnPropertyChanged("xAxisOffsetVal"); } } private double _yAxisOffsetVal = 0d; /// /// 成像整体Y轴偏移(毫米) /// public double yAxisOffsetVal { get { return _yAxisOffsetVal; } set { _yAxisOffsetVal = value; OnPropertyChanged("yAxisOffsetVal"); } } } }