5 changed files with 203 additions and 21 deletions
-
57src/Shentun.Peis.Application.Contracts/LisRequests/LisPatientRegisterDto.cs
-
32src/Shentun.Peis.Application/ImportLisResults/ImportLisResultAppService.cs
-
61src/Shentun.Peis.Application/LisRequests/LisRequestAppService.cs
-
8src/Shentun.Peis.Application/SampleTypes/SampleTypeAppService.cs
-
30src/Shentun.Peis.Domain/CacheService.cs
@ -0,0 +1,57 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.LisRequests |
||||
|
{ |
||||
|
public class LisPatientRegisterDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 姓名
|
||||
|
/// </summary>
|
||||
|
public string PatientName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 检验单号码
|
||||
|
/// </summary>
|
||||
|
public string LisRequestNo { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 年龄
|
||||
|
/// </summary>
|
||||
|
public short? Age { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 性别
|
||||
|
/// </summary>
|
||||
|
public string SexName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 标本类型
|
||||
|
/// </summary>
|
||||
|
public string SampleTypeName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 项目信息
|
||||
|
/// </summary>
|
||||
|
public List<LisPatientRegisterDetailDto> AsbitemDetail { get; set; } |
||||
|
} |
||||
|
|
||||
|
public class LisPatientRegisterDetailDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 组合项目ID
|
||||
|
/// </summary>
|
||||
|
public Guid AsbitemId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 组合项目
|
||||
|
/// </summary>
|
||||
|
public string AsbitemName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 项目价格
|
||||
|
/// </summary>
|
||||
|
public decimal AsbitemPrice { get; set; } |
||||
|
} |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue