dc/Common/ISECSMessageHandler.cs
13118993771@163.com 5e9d0f1e2d EAP
2022-04-01 17:03:54 +08:00

18 lines
616 B
C#

// ********************************************************************************
// 文件名字: 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);
}
}