9 changed files with 228 additions and 39 deletions
-
19src/Shentun.Peis.Application.Contracts/Asbitems/SimpleAsbitemWithDetailsDto.cs
-
9src/Shentun.Peis.Application.Contracts/RegisterCheckPictures/UploadRegisterCheckPictureManyDto.cs
-
57src/Shentun.Peis.Application.Contracts/RegisterChecks/RegisterCheckWithAsbitemsDto.cs
-
35src/Shentun.Peis.Application/Asbitems/AsbitemAppService.cs
-
10src/Shentun.Peis.Application/Diagnosises/DiagnosisAppService.cs
-
2src/Shentun.Peis.Application/PatientRegisters/PatientRegisterAppService.cs
-
11src/Shentun.Peis.Application/RegisterCheckPictures/RegisterCheckPictureAppService.cs
-
99src/Shentun.Peis.Application/RegisterChecks/RegisterCheckAppService.cs
-
25src/Shentun.Peis.Domain/ImageHelper.cs
@ -0,0 +1,19 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.Asbitems |
|||
{ |
|||
public class SimpleAsbitemWithDetailsDto |
|||
{ |
|||
/// <summary>
|
|||
/// 组合项目ID
|
|||
/// </summary>
|
|||
public Guid AsbitemId { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 项目名称
|
|||
/// </summary>
|
|||
public string ItemName { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,57 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.RegisterChecks |
|||
{ |
|||
public class RegisterCheckWithAsbitemsDto |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 组合项目名称
|
|||
/// </summary>
|
|||
public string AsbitemName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 是否收费
|
|||
/// </summary>
|
|||
public char? IsCharge { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 检查单号
|
|||
/// </summary>
|
|||
public string? CheckRequestNo { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 是否锁住
|
|||
/// </summary>
|
|||
public char IsLock { get; set; } |
|||
/// <summary>
|
|||
/// 完成标志 0(为未检), 1(已检), 2(弃检)
|
|||
/// </summary>
|
|||
public char CompleteFlag { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 检查医生ID
|
|||
/// </summary>
|
|||
public string? CheckDoctorId { get; set; } |
|||
/// <summary>
|
|||
/// 检查日期
|
|||
/// </summary>
|
|||
public string? CheckDate { get; set; } |
|||
/// <summary>
|
|||
/// 是审核
|
|||
/// </summary>
|
|||
public char IsAudit { get; set; } |
|||
/// <summary>
|
|||
/// 审核医生ID
|
|||
/// </summary>
|
|||
public Guid? AuditorUserId { get; set; } |
|||
/// <summary>
|
|||
/// 审核时间
|
|||
/// </summary>
|
|||
public DateTime? AuditTime { get; set; } |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue