using System.Collections.Generic;
using MediII.Adapter.ReceiveToScanModel;
namespace MediII.Adapter.BizComponent.UE
{
public class DebugScanner : DefaultDBScanner
{
protected override string GetMessageType()
{
return string.Empty;
}
///
/// 调试消息并更新表"HL7_Receive"
///
///
public void DebugMsg(HL7_ReceiveEntity entity)
{
var list = new List { entity };
base.DebugMsg(list);
}
}
}