6 changed files with 180 additions and 1 deletions
-
24src/Shentun.Peis.Application.Contracts/LisRequests/GetRequestAsbitemByLisRequestIdListDto.cs
-
30src/Shentun.Peis.Application.Contracts/LisRequests/GetSendLisRequestListDto.cs
-
20src/Shentun.Peis.Application.Contracts/LisRequests/GetSendLisRequestListInputDto.cs
-
20src/Shentun.Peis.Application.Contracts/RegisterChecks/GetPacsRequestListByPatientRegisterIdInputDto.cs
-
79src/Shentun.Peis.Application/LisRequests/LisRequestAppService.cs
-
8src/Shentun.Peis.Application/RegisterChecks/RegisterCheckAppService.cs
@ -0,0 +1,24 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.ComponentModel.DataAnnotations.Schema; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.LisRequests |
||||
|
{ |
||||
|
public class GetRequestAsbitemByLisRequestIdListDto |
||||
|
{ |
||||
|
public string AsbitemName { get; set; } |
||||
|
|
||||
|
public short Amount { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 标准价格
|
||||
|
/// </summary>
|
||||
|
public decimal StandardPrice { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 实收价格
|
||||
|
/// </summary>
|
||||
|
public decimal ChargePrice { get; set; } |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,30 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.LisRequests |
||||
|
{ |
||||
|
public class GetSendLisRequestListDto |
||||
|
{ |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 申请Id
|
||||
|
/// </summary>
|
||||
|
public Guid LisRequestId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 姓名
|
||||
|
/// </summary>
|
||||
|
public string PatientName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 申请单号
|
||||
|
/// </summary>
|
||||
|
public string LisRequestNo { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 申请时间
|
||||
|
/// </summary>
|
||||
|
public string RequestDate { get; set; } |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,20 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.LisRequests |
||||
|
{ |
||||
|
public class GetSendLisRequestListInputDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 人员id
|
||||
|
/// </summary>
|
||||
|
public Guid PatientRegisterId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 执行状态 0-未发送 1-已发送 2-已签收 3-已接收结果
|
||||
|
/// 暂时只启用0 1
|
||||
|
/// </summary>
|
||||
|
public char ExecFlag { get; set; } |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,20 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.RegisterChecks |
||||
|
{ |
||||
|
public class GetPacsRequestListByPatientRegisterIdInputDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 人员id
|
||||
|
/// </summary>
|
||||
|
public Guid PatientRegisterId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 执行状态 0-未发送 1-已发送 2-已签收 3-已接收结果
|
||||
|
/// 暂时只启用0 1
|
||||
|
/// </summary>
|
||||
|
public char ExecFlag { get; set; } |
||||
|
} |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue