5 changed files with 191 additions and 6 deletions
-
14src/Shentun.Peis.Application.Contracts/PatientRegisters/PatientRegisterNosInputDto.cs
-
29src/Shentun.Peis.Application.Contracts/RegisterCheckPictures/ImportRegisterCheckPictureByLisRequestNoInputDto.cs
-
29src/Shentun.Peis.Application.Contracts/RegisterCheckPictures/ImportRegisterCheckPictureByPatientRegisterNoInputDto.cs
-
100src/Shentun.Peis.Application/RegisterCheckPictures/RegisterCheckPictureAppService.cs
-
25src/Shentun.Peis.Application/RegisterChecks/RegisterCheckAppService.cs
@ -0,0 +1,14 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.PatientRegisters |
|||
{ |
|||
public class PatientRegisterNosInputDto |
|||
{ |
|||
/// <summary>
|
|||
/// 人员条码号集合
|
|||
/// </summary>
|
|||
public List<string> PatientRegisterNos { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,29 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.RegisterCheckPictures |
|||
{ |
|||
public class ImportRegisterCheckPictureByLisRequestNoInputDto |
|||
{ |
|||
/// <summary>
|
|||
/// 检查申请单号 不以人员条码号模式
|
|||
/// </summary>
|
|||
public string LisRequestNo { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 组合项目ID
|
|||
/// </summary>
|
|||
public Guid AsbitemId { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 图片原始名称
|
|||
/// </summary>
|
|||
public string PictureName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 图片base64字符串
|
|||
/// </summary>
|
|||
public string PictureBase64 { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,29 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.RegisterCheckPictures |
|||
{ |
|||
public class ImportRegisterCheckPictureByPatientRegisterNoInputDto |
|||
{ |
|||
/// <summary>
|
|||
/// 人员条码号
|
|||
/// </summary>
|
|||
public string PatientRegisterNo { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 组合项目ID
|
|||
/// </summary>
|
|||
public Guid AsbitemId { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 图片原始名称
|
|||
/// </summary>
|
|||
public string PictureName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 图片base64字符串
|
|||
/// </summary>
|
|||
public string PictureBase64 { get; set; } |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue