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; }
+ }
+}