using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace FLY.Thick.Base.IService { public interface IGageInfoService:INotifyPropertyChanged { /// /// 机架总长,脉冲 /// int PosLen { get; } /// /// 1个grid = N个pos /// int PosOfGrid { get; } /// /// 正向扫描数据 /// List ForwData { get; } /// /// 反向扫描数据 /// List BackwData { get; } /// /// 数据好了!!!! /// 当 flyad7 的poslen, posOfGrid 发生变化时,DataOK = false, 需要重新记录。 /// bool DataOK { get; } /// /// 当前进度 0 - 100 /// int Progress { get; } /// /// 正在机架修正中 /// bool IsRunning { get; } /// /// 数据录制,记下来回扫描的AD值数组 /// bool Start(); void Stop(); } }