2 changed files with 83 additions and 0 deletions
-
33src/Shentun.Peis.Application.Contracts/PatientRegisters/UpdatePatientRegisterBaseInfoByPatientRegisterIdInputDto.cs
-
50src/Shentun.Peis.Application/PatientRegisters/PatientRegisterAppService.cs
@ -0,0 +1,33 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel.DataAnnotations.Schema; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.PatientRegisters |
|||
{ |
|||
public class UpdatePatientRegisterBaseInfoByPatientRegisterIdInputDto |
|||
{ |
|||
/// <summary>
|
|||
/// 人员登记ID
|
|||
/// </summary>
|
|||
public Guid PatientRegisterId { get; set;} |
|||
|
|||
/// <summary>
|
|||
/// 姓名
|
|||
/// </summary>
|
|||
public string PatientName { get; set;} |
|||
|
|||
/// <summary>
|
|||
/// 手机
|
|||
/// </summary>
|
|||
public string MobileTelephone { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 身份证号
|
|||
/// </summary>
|
|||
public string IdNo { get; set; } |
|||
|
|||
|
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue