From bd953391a74b86db829df43992c7cf3c5207634b Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期五, 27 六月 2025 18:07:22 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ruoyi-system/src/main/resources/mapper/system/TQaTestItemReportMapper.xml | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/ruoyi-system/src/main/resources/mapper/system/TQaTestItemReportMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TQaTestItemReportMapper.xml index ba88585..054e636 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TQaTestItemReportMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TQaTestItemReportMapper.xml @@ -70,5 +70,14 @@ </where> ORDER BY tqtir.create_time DESC </select> + <select id="getListByItemId" resultType="com.ruoyi.system.vo.TQaTestItemReportVO"> + select + <include refid="Base_Column_List" /> + from t_qa_test_item_report + where item_id = #{itemId} + and status in (1,2,3) + and disabled = ${@com.ruoyi.common.enums.DisabledEnum@NO.getCode()} + order by create_time desc + </select> </mapper> -- Gitblit v1.7.1