9 changed files with 226 additions and 7 deletions
-
34src/Shentun.Peis.Application.Contracts/PacsBusiness/GetPatientRegisterPacsCheckDto.cs
-
33src/Shentun.Peis.Application.Contracts/PacsBusiness/GetPatientRegisterPacsCheckInputDto.cs
-
2src/Shentun.Peis.Application.Contracts/PacsBusiness/ImportRegisterCheckPictureByCheckRequestNoInputDto.cs
-
29src/Shentun.Peis.Application.Contracts/PacsBusiness/UpdateRegisterCheckIsPacsCheckInputDto.cs
-
15src/Shentun.Peis.Application.Contracts/RegisterChecks/RegisterCheckDto.cs
-
102src/Shentun.Peis.Application/PacsBusiness/PacsBusinessAppService.cs
-
6src/Shentun.Peis.Application/PeisApplicationAutoMapperProfile.cs
-
7src/Shentun.Peis.Application/RegisterChecks/RegisterCheckAppService.cs
-
5src/Shentun.Peis.Domain/Devices/Device.cs
@ -0,0 +1,34 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.PacsBusiness |
||||
|
{ |
||||
|
public class GetPatientRegisterPacsCheckDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 姓名
|
||||
|
/// </summary>
|
||||
|
public string PatientName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 条码号
|
||||
|
/// </summary>
|
||||
|
public string CheckRequestNo { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 组合项目
|
||||
|
/// </summary>
|
||||
|
public string AsbitemName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 检查日期
|
||||
|
/// </summary>
|
||||
|
public string PacsCheckDate { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 上传日期
|
||||
|
/// </summary>
|
||||
|
public string PacsUploadDate { get; set; } |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,33 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.PacsBusiness |
||||
|
{ |
||||
|
public class GetPatientRegisterPacsCheckInputDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 姓名
|
||||
|
/// </summary>
|
||||
|
public string PatientName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 条码号
|
||||
|
/// </summary>
|
||||
|
public string CheckRequestNo { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 日期类型 0-检查日期 1-上传日期
|
||||
|
/// </summary>
|
||||
|
public char DateType { get; set; } |
||||
|
|
||||
|
public string StartDate { get; set; } |
||||
|
|
||||
|
public string EndDate { get; set; } |
||||
|
|
||||
|
public int MaxResultCount { get; set; } = 1000; |
||||
|
|
||||
|
public int SkipCount { get; set; } = 0; |
||||
|
|
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,29 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.PacsBusiness |
||||
|
{ |
||||
|
public class UpdateRegisterCheckIsPacsCheckInputDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 条码号
|
||||
|
/// </summary>
|
||||
|
public string CheckRequestNo { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 检查日期
|
||||
|
/// </summary>
|
||||
|
public string PacsCheckDate { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 上传日期
|
||||
|
/// </summary>
|
||||
|
public string PacsUploadDate { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 是否检查 Y N 默认为Y
|
||||
|
/// </summary>
|
||||
|
public char IsPacsCheck { get; set; } = 'Y'; |
||||
|
} |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue