فهرست منبع

add
根据住院号查询手术信息返回增加科室id字段

18339543638 4 ماه پیش
والد
کامیت
5664d766ac

+ 3 - 0
tr-modules/tr-module-smartFollowUp/src/main/java/cn/tr/module/smart/app/controller/vo/WxDoctorClinicRoomThumbnailVO.java

@@ -26,6 +26,9 @@ public class WxDoctorClinicRoomThumbnailVO implements Serializable {
     @ApiModelProperty(value = "手术开始时间", position = 3)
     private Date clinicStartTime;
 
+    @ApiModelProperty(value = "科室id",position = 4)
+    private String deptId;
+
     @ApiModelProperty(value = "科室名称", position = 4)
     private String deptName;
 

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

@@ -57,6 +57,7 @@
         <result property="clinicRoomId" column="clinic_room_id"/>
         <result property="clinicName" column="clinic_name"/>
         <result property="clinicStartTime" column="clinic_start_time"/>
+        <result property="deptId" column="dept_id"/>
         <result property="deptName" column="dept_name"/>
         <result property="patientCode" column="patient_code"/>
         <result property="patientName" column="patient_name"/>
@@ -263,6 +264,7 @@
         bcr.id as clinic_room_id,
         bcr.clinic_name as clinic_name,
         bcr.clinic_start_time as clinic_start_time,
+        bcr.dept_id as dept_id,
         bcr.dept_name as dept_name,
         bcr.patient_code as patient_code,
         bcr.patient_name as patient_name,