IBizComponent.cs 548 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using NHapi.Base.Model;
  6. namespace MediII.Adapter.BizComponent.Base
  7. {
  8. public interface IBizComponent
  9. {
  10. /// <summary>
  11. /// 消息到达处理
  12. /// </summary>
  13. /// <param name="message">处理消息的抽象接口</param>
  14. /// <param name="ackMessage">回复消息</param>
  15. /// <returns>1 成功,0 失败</returns>
  16. string Process(string message,string msgType,string ID);
  17. }
  18. }