From 0b1100de7e21ec36b6083bcb3784114f91cbc18d Mon Sep 17 00:00:00 2001 From: wxd <123@qq.com> Date: Wed, 14 Aug 2024 15:17:01 +0800 Subject: [PATCH] =?UTF-8?q?=E9=97=AE=E5=8D=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../GetPatientRegisterListByIdNoDto.cs | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/Shentun.Peis.Application.Contracts/ThirdPartyPublicInterfaces/GetPatientRegisterListByIdNoDto.cs diff --git a/src/Shentun.Peis.Application.Contracts/ThirdPartyPublicInterfaces/GetPatientRegisterListByIdNoDto.cs b/src/Shentun.Peis.Application.Contracts/ThirdPartyPublicInterfaces/GetPatientRegisterListByIdNoDto.cs new file mode 100644 index 0000000..6a929bf --- /dev/null +++ b/src/Shentun.Peis.Application.Contracts/ThirdPartyPublicInterfaces/GetPatientRegisterListByIdNoDto.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Shentun.Peis.ThirdPartyPublicInterfaces +{ + public class GetPatientRegisterListByIdNoDto + { + /// + /// 体检编号 + /// + public string PatientRegisterNo { get; set; } + + /// + /// 姓名 + /// + public string PatientName { get; set; } + + /// + /// 体检日期 年月日 + /// + public string MedicalStartDate { get; set; } + } +}