using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MediII.Adapter.BizComponent.Base { public interface IBizComponent { /// /// 消息到达处理 /// /// 处理消息的抽象接口 /// 回复消息 /// 1 成功,0 失败 string Process(string message,string msgType); } }