DebugScanner.cs 619 B

1234567891011121314151617181920212223
  1. using System.Collections.Generic;
  2. using MediII.Adapter.ReceiveToScanModel;
  3. namespace MediII.Adapter.BizComponent.UE
  4. {
  5. public class DebugScanner : DefaultDBScanner
  6. {
  7. protected override string GetMessageType()
  8. {
  9. return string.Empty;
  10. }
  11. /// <summary>
  12. /// 调试消息并更新表"HL7_Receive"
  13. /// </summary>
  14. /// <param name="entity"></param>
  15. public void DebugMsg(HL7_ReceiveEntity entity)
  16. {
  17. var list = new List<HL7_ReceiveEntity> { entity };
  18. base.DebugMsg(list);
  19. }
  20. }
  21. }