Bläddra i källkod

页面顶部信息接口修改

rengb 5 år sedan
förälder
incheckning
a27d4220b6

+ 6 - 0
aipt-service/src/main/java/com/diagbot/dto/GetTopPatientInfoDjDTO.java

@@ -138,6 +138,12 @@ public class GetTopPatientInfoDjDTO {
     @ApiModelProperty(value = "病人证件号码")
     private String patientIdNo;
 
+    /**
+     * 患者联系电话
+     */
+    @ApiModelProperty(value = "患者联系电话")
+    private String patientPhone;
+
     /**
      * 系统时间
      */

+ 6 - 0
icss-service/src/main/java/com/diagbot/dto/GetTopPatientInfoDjDTO.java

@@ -138,6 +138,12 @@ public class GetTopPatientInfoDjDTO {
     @ApiModelProperty(value = "病人证件号码")
     private String patientIdNo;
 
+    /**
+     * 患者联系电话
+     */
+    @ApiModelProperty(value = "患者联系电话")
+    private String patientPhone;
+
     /**
      * 系统时间
      */

+ 6 - 0
prec-service/src/main/java/com/diagbot/dto/GetTopPatientInfoDjDTO.java

@@ -138,6 +138,12 @@ public class GetTopPatientInfoDjDTO {
     @ApiModelProperty(value = "病人证件号码")
     private String patientIdNo;
 
+    /**
+     * 患者联系电话
+     */
+    @ApiModelProperty(value = "患者联系电话")
+    private String patientPhone;
+
     /**
      * 系统时间
      */

+ 5 - 0
tran-service/src/main/java/com/diagbot/dto/GetTopPatientInfoDjDTO.java

@@ -115,6 +115,11 @@ public class GetTopPatientInfoDjDTO {
      */
     private String patientIdNo;
 
+    /**
+     * 患者联系电话
+     */
+    private String patientPhone;
+
     /**
      * 系统时间
      */

+ 1 - 0
tran-service/src/main/resources/mapper/PatientInfoMapper.xml

@@ -83,6 +83,7 @@
         d.`name` as patientName,
         case when d.sex=1 then '男' when d.sex=2 then '女' else '未知' end as patientSex,
         case when d.identity_num is null or d.identity_num='' then d.id_no else d.identity_num end as patientIdNo,
+        d.phone as patientPhone,
         d.birthday as birthday
         FROM tran_hospital_info a
         LEFT JOIN tran_doctor_info c