4 changed files with 177 additions and 1 deletions
-
42src/Shentun.Peis.Application.Contracts/RegisterCheckAsbitems/GetRegisterCheckAsbitemWithMedicalCenterDto.cs
-
21src/Shentun.Peis.Application.Contracts/RegisterCheckAsbitems/GetRegisterCheckAsbitemWithMedicalCenterInputDto.cs
-
19src/Shentun.Peis.Application.Contracts/RegisterCheckAsbitems/HandRegisterCheckAsbitemMedicalCenterInputDto.cs
-
96src/Shentun.Peis.Application/RegisterCheckAsbitems/RegisterCheckAsbitemAppService.cs
@ -0,0 +1,42 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.RegisterCheckAsbitems |
|||
{ |
|||
public class GetRegisterCheckAsbitemWithMedicalCenterDto |
|||
{ |
|||
public Guid RegisterCheckAsbitemId { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 体检中心名称
|
|||
/// </summary>
|
|||
public string MedicalCenterName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 组合项目名称
|
|||
/// </summary>
|
|||
public string AsbitemName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 人员状态
|
|||
/// </summary>
|
|||
public char PatientRegisterCompleteFlag { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 项目状态
|
|||
/// </summary>
|
|||
public char RegisterCheckCompleteFlag { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 人员姓名
|
|||
/// </summary>
|
|||
public string PatientName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 身份证
|
|||
/// </summary>
|
|||
public string IdNo { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,21 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.RegisterCheckAsbitems |
|||
{ |
|||
public class GetRegisterCheckAsbitemWithMedicalCenterInputDto |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// 人员Id
|
|||
/// </summary>
|
|||
public Guid? PatientRegisterId { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 人员条码
|
|||
/// </summary>
|
|||
public string PatientRegisterNo { get; set; } |
|||
|
|||
} |
|||
} |
|||
@ -0,0 +1,19 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.RegisterCheckAsbitems |
|||
{ |
|||
public class HandRegisterCheckAsbitemMedicalCenterInputDto |
|||
{ |
|||
/// <summary>
|
|||
/// 登记项目id
|
|||
/// </summary>
|
|||
public Guid RegisterCheckAsbitemId { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 体检中心id
|
|||
/// </summary>
|
|||
public Guid MedicalCenterId { get; set; } |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue