4 changed files with 131 additions and 26 deletions
-
19src/Shentun.Peis.Application.Contracts/Asbitems/SimpleAsbitemDto.cs
-
14src/Shentun.Peis.Application.Contracts/PatientRegisters/PatientRegisterIdsInputDto.cs
-
32src/Shentun.Peis.Application.Contracts/RegisterChecks/UpdateBatchCheckDoctorInputDto.cs
-
92src/Shentun.Peis.Application/RegisterChecks/RegisterCheckAppService.cs
@ -0,0 +1,19 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.Asbitems |
||||
|
{ |
||||
|
public class SimpleAsbitemDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 组合项目ID
|
||||
|
/// </summary>
|
||||
|
public Guid AsbitemId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 组合项目名称
|
||||
|
/// </summary>
|
||||
|
public string AsbitemName { get; set; } |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,14 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.PatientRegisters |
||||
|
{ |
||||
|
public class PatientRegisterIdsInputDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 人员ID集合
|
||||
|
/// </summary>
|
||||
|
public List<Guid> PatientRegisterIds { get; set; } |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,32 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.RegisterChecks |
||||
|
{ |
||||
|
public class UpdateBatchCheckDoctorInputDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 人员id集合
|
||||
|
/// </summary>
|
||||
|
public List<Guid> PatientRegisterIds { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 检查医生 不需要修改的信息都不用传过来
|
||||
|
/// </summary>
|
||||
|
public List<UpdateBatchCheckDoctorInputDetailDto> CheckDoctorDetail { get; set; } |
||||
|
} |
||||
|
|
||||
|
public class UpdateBatchCheckDoctorInputDetailDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 组合项目ID
|
||||
|
/// </summary>
|
||||
|
public Guid AsbitemId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 检查医生 也可以传字符串
|
||||
|
/// </summary>
|
||||
|
public string CheckDoctorId { get; set; } |
||||
|
} |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue