3 changed files with 124 additions and 20 deletions
-
58src/Shentun.Peis.Application.Contracts/ImportLisResults/ImportResultByLisRequestNoInputDto.cs
-
56src/Shentun.Peis.Application/ImportLisResults/ImportLisResultAppService.cs
-
20src/Shentun.Peis.Domain/ColumnReferenceCodes/ColumnReferenceCodeManager.cs
@ -0,0 +1,58 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.ImportLisResults |
|||
{ |
|||
public class ImportResultByLisRequestNoInputDto |
|||
{ |
|||
public string LisRequestNo { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 项目编号
|
|||
/// </summary>
|
|||
public string ItemId { get; set; } |
|||
/// <summary>
|
|||
/// 项目名称
|
|||
/// </summary>
|
|||
public string ItemName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 结果
|
|||
/// </summary>
|
|||
public string? Result { get; set; } |
|||
/// <summary>
|
|||
/// 单位
|
|||
/// </summary>
|
|||
|
|||
public string? Unit { get; set; } |
|||
/// <summary>
|
|||
/// 参考范围
|
|||
/// </summary>
|
|||
|
|||
public string? ReferenceRangeValue { get; set; } |
|||
/// <summary>
|
|||
/// 危急值范围
|
|||
/// </summary>
|
|||
|
|||
public string? CriticalRangeValue { get; set; } |
|||
/// <summary>
|
|||
/// 危急值
|
|||
/// </summary>
|
|||
|
|||
public string? CriticalValue { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 检查医生
|
|||
/// </summary>
|
|||
|
|||
public string? CheckDoctorName { get; set; } |
|||
/// <summary>
|
|||
/// 检查日期
|
|||
/// </summary>
|
|||
|
|||
public DateTime? CheckDate { get; set; } |
|||
|
|||
|
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue