diff --git a/src/Shentun.Pacs.Application/PacsBusiness/PacsBusinessAppService.cs b/src/Shentun.Pacs.Application/PacsBusiness/PacsBusinessAppService.cs
index 3db9eca..7f7dc50 100644
--- a/src/Shentun.Pacs.Application/PacsBusiness/PacsBusinessAppService.cs
+++ b/src/Shentun.Pacs.Application/PacsBusiness/PacsBusinessAppService.cs
@@ -1341,7 +1341,7 @@ namespace Shentun.Pacs.PacsBusiness
DataRow row = oldRegisterAsbitemList.Rows[0];
#region 档案
- var patientName = row["patient_name"].ToString();
+ var patientName = row["patient_name"].ToString().Replace("\n", "").Replace("\t", "").Replace("\r", "");
var sexId = ConvertSex(row["sex_id"].ToString());
var mobileTelephone = row["mobile_telephone"].ToString();
var telephone = row["telephone"].ToString();
diff --git a/src/Shentun.Pacs.Application/RegisterCheckPictures/RegisterCheckPictureAppService.cs b/src/Shentun.Pacs.Application/RegisterCheckPictures/RegisterCheckPictureAppService.cs
index 5dc3641..eba151b 100644
--- a/src/Shentun.Pacs.Application/RegisterCheckPictures/RegisterCheckPictureAppService.cs
+++ b/src/Shentun.Pacs.Application/RegisterCheckPictures/RegisterCheckPictureAppService.cs
@@ -142,7 +142,7 @@ namespace Shentun.Pacs.RegisterCheckPictures
///
- /// 图片上传功能 base64 支持批量 yong
+ /// 图片上传功能 base64 支持批量 医生诊台手动上传图片
///
///
///
@@ -356,7 +356,7 @@ namespace Shentun.Pacs.RegisterCheckPictures
///
- /// 导入检查图片 根据检查单号
+ /// 导入检查图片 根据检查单号 Pacs看图下载图片使用
///
///
[HttpPost("api/app/RegisterCheckPicture/ImportRegisterCheckPicture")]