// ******************************************************************************** // 文件名字: ISECSMessageHandler // 文件描述: ISECSMessageHandler // 开发人员: Michael // 创建时间: 2019/11/8 0:08 // // 更新历史: // + 创建 ISECSMessageHandler.cs 文件. by Michael @2019/11/8 0:08 // ******************************************************************************** using Glorysoft.SECSwell; namespace Glorysoft.SECS.EQP.Common { public interface ISECSMessageHandler { void Execute(SECSContext context, SECSTransaction trans, SECSErrors err, string errmsg); } }