using SLH.SSDMS.Model.DO; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SLH.SSDMS.Services { public interface IRfidJudge { /// /// 判断当前运行方向 /// /// /// Task JudgeDirection(string rfidCode); /// /// 判断当前运行速度 /// /// /// Task JudgeRunSpeed(Base_ReadRecord readRecord); /// /// 判断当前运行里程 /// /// /// Task JudgeRunDistance(Base_ReadRecord readRecord); /// /// 判断当前运行时长 /// /// /// Task JudgeRunTime(Base_ReadRecord readRecord); /// /// 判断当前胶带上机时间 /// /// /// Task JudgeFirstTime(string lotCode); } }