using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MaterialTraceability.Business { /// /// 信号逻辑处理接口 /// public interface ISignalReadFunction { /// /// 放卷位涨紧 /// /// void UpMaterialBegin(int position); /// /// 放卷位结束 /// /// void UpMaterialEnd(int position); /// /// 收卷位涨紧 /// /// void DownMaterialBegin(int position); /// /// 收卷位结束 /// /// void DownMaterialEnd(int position); /// /// 强制下料 /// /// void ForceDown(int position); /// /// 放卷位开始信号 /// /// void UpBegin(int position); /// /// 收卷位开始信号 /// /// void DownBegin(int position); /// /// 设备启动信号 /// void MachineStartUp(); } }