|
@@ -7805,8 +7805,8 @@
|
|
|
<select id="leaveHosMRPage" resultType="com.diagbot.dto.QcResultShortDTO">
|
|
|
SELECT
|
|
|
t.*,
|
|
|
- t4.operation_doctor_id AS operationDoctor,
|
|
|
- t4.operation_level AS operationLevel
|
|
|
+ t4.operation_doctor_id,
|
|
|
+ t4.operation_level
|
|
|
FROM
|
|
|
(SELECT DISTINCT
|
|
|
t1.hospital_id AS hospitalId,
|
|
@@ -8049,10 +8049,10 @@
|
|
|
AND t.`level` = #{qcResultShortPageVO.level}
|
|
|
</if>
|
|
|
<if test="qcResultShortPageVO.operationDoctor != null and qcResultShortPageVO.operationDoctor != ''">
|
|
|
- AND t4.`operationDoctor` = #{qcResultShortPageVO.operationDoctor}
|
|
|
+ AND t4.`operation_doctor_id` = #{qcResultShortPageVO.operationDoctor}
|
|
|
</if>
|
|
|
<if test="qcResultShortPageVO.operationLevel != null and qcResultShortPageVO.operationLevel != ''">
|
|
|
- AND t4.`operationLevel` = #{qcResultShortPageVO.operationLevel}
|
|
|
+ AND t4.`operation_level` = #{qcResultShortPageVO.operationLevel}
|
|
|
</if>
|
|
|
</select>
|
|
|
|