diff --git a/src/Shentun.Peis.Application.Contracts/PacsBusiness/ImportRegisterCheckPictureByCheckRequestNoInputDto.cs b/src/Shentun.Peis.Application.Contracts/PacsBusiness/ImportRegisterCheckPictureByCheckRequestNoInputDto.cs
index 0a586e8..50b7b4e 100644
--- a/src/Shentun.Peis.Application.Contracts/PacsBusiness/ImportRegisterCheckPictureByCheckRequestNoInputDto.cs
+++ b/src/Shentun.Peis.Application.Contracts/PacsBusiness/ImportRegisterCheckPictureByCheckRequestNoInputDto.cs
@@ -20,5 +20,10 @@ namespace Shentun.Peis.PacsBusiness
/// 图片base64
///
public string PictureBaseStr { get; set; }
+
+ ///
+ /// 是否打印
+ ///
+ public char IsPrint { get; set } = 'Y';
}
}
diff --git a/src/Shentun.Peis.Application/Devices/DeviceAppService.cs b/src/Shentun.Peis.Application/Devices/DeviceAppService.cs
index 82e6bd9..4a29f47 100644
--- a/src/Shentun.Peis.Application/Devices/DeviceAppService.cs
+++ b/src/Shentun.Peis.Application/Devices/DeviceAppService.cs
@@ -15,7 +15,7 @@ using Volo.Abp.Domain.Repositories;
namespace Shentun.Peis.Devices
{
///
- /// 危急值
+ /// 设备
///
[ApiExplorerSettings(GroupName = "Work")]
[Authorize]
diff --git a/src/Shentun.Peis.Application/PacsBusiness/PacsBusinessAppService.cs b/src/Shentun.Peis.Application/PacsBusiness/PacsBusinessAppService.cs
index e49caa5..e77bfe6 100644
--- a/src/Shentun.Peis.Application/PacsBusiness/PacsBusinessAppService.cs
+++ b/src/Shentun.Peis.Application/PacsBusiness/PacsBusinessAppService.cs
@@ -147,7 +147,7 @@ namespace Shentun.Peis.PacsBusiness
ent = new RegisterCheckPicture
{
DisplayOrder = maxDisplayOrder + 1,
- IsPrint = 'Y',
+ IsPrint = input.IsPrint,
PictureFilename = PictureUrl,
RegisterCheckId = registerCheckId,
PictureFileType = '0',