Bladeren bron

update: web端患者信息列表返回内容修改

wangzl 5 maanden geleden
bovenliggende
commit
e063dcb10b

+ 6 - 0
tr-modules/tr-module-smartFollowUp/src/main/java/cn/tr/module/smart/common/dto/BizPatientDTO.java

@@ -38,4 +38,10 @@ public class BizPatientDTO extends BaseDTO  {
     @ApiModelProperty(value = "当前手术id", position = 6)
     private String currentClinicId;
 
+    @ApiModelProperty(value = "手术名称", position = 7)
+    private String clinicName;
+
+    @ApiModelProperty(value = "手术开始时间", position = 8)
+    private Date clinicStartTime;
+
 }

+ 2 - 0
tr-modules/tr-module-smartFollowUp/src/main/resources/mapper/smart/BizPatientMapper.xml

@@ -60,6 +60,8 @@
             bcr.patient_name as name,
             bcr.patient_age as age,
             bcr.patient_gender as gender,
+            bcr.clinic_name as clinicName,
+            bcr.clinic_start_time as clinicStartTime,
             bp.current_clinic_id as currentClinicId,
             bp.create_by as createBy,
             bp.create_time as createTime,