3 changed files with 115 additions and 3 deletions
-
52src/Shentun.Peis.Application.Contracts/PacsBusiness/GetRegisterCheckPictureByPatientRegisterIdDto.cs
-
17src/Shentun.Peis.Application.Contracts/PacsBusiness/GetRegisterCheckPictureByPatientRegisterIdInputDto.cs
-
49src/Shentun.Peis.Application/PacsBusiness/PacsBusinessAppService.cs
@ -0,0 +1,52 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel.DataAnnotations.Schema; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.PacsBusiness |
|||
{ |
|||
public class GetRegisterCheckPictureByPatientRegisterIdDto |
|||
{ |
|||
/// <summary>
|
|||
/// 姓名
|
|||
/// </summary>
|
|||
public string PatientName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 项目名称
|
|||
/// </summary>
|
|||
public string AsbitemName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// registerCheck表ID
|
|||
/// </summary>
|
|||
public Guid RegisterCheckId { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 条码号
|
|||
/// </summary>
|
|||
public string CheckRequestNo { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 图片名
|
|||
/// </summary>
|
|||
public string PictureFilename { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 图片文件类型 0-仪器图片,1-报告文件,默认是0
|
|||
/// </summary>
|
|||
public char PictureFileType { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 本地资源路径
|
|||
/// </summary>
|
|||
public string LocalPathName { get; set; } |
|||
|
|||
|
|||
public int DisplayOrder { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,17 @@ |
|||
using Shentun.Peis.PatientRegisters; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.PacsBusiness |
|||
{ |
|||
public class GetRegisterCheckPictureByPatientRegisterIdInputDto : PatientRegisterIdInputDto |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// 检查类型 0-普通检查 1-检验 2-特检 3-放射
|
|||
/// </summary>
|
|||
public char CheckTypeFlag { get; set; } = '3'; |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue