From 9961fd3e734552a21a30c12cea39ebf3ff57227f Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期二, 20 五月 2025 09:41:08 +0800 Subject: [PATCH] 测评接口 --- ruoyi-system/src/main/resources/mapper/system/TQaProduceReportMapper.xml | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/ruoyi-system/src/main/resources/mapper/system/TQaProduceReportMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TQaProduceReportMapper.xml index 71614f4..fbacc97 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TQaProduceReportMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TQaProduceReportMapper.xml @@ -60,5 +60,36 @@ </where> ORDER BY tqpr.create_time DESC </select> + <select id="evaluateList" resultType="com.ruoyi.system.vo.TQaProduceReportVO"> + select tqpr.id, tqpr.team_id, tqpr.report_title, tqpr.report_code, tqpr.develop_person, tqpr.develop_date, + tqpr.report_text, tqpr.report_type, tqpr.audit_person_id, tqpr.audit_time, tqpr.audit_remark, tqpr.status, + tqpr.evaluate_person_id, tqpr.evaluate_time, tqpr.evaluate_score, tqpr.create_time, tqpr.update_time, + tqpr.create_by, tqpr.update_by, tqpr.disabled, tpt.team_name as teamName + from t_qa_produce_report tqpr + left join t_project_team tpt on tpt.id = tqpr.team_id + <where> + <if test="query.reportTitle != null and query.reportTitle != ''"> + and tqpr.report_title like concat('%', #{query.reportTitle}, '%') + </if> + <if test="query.reportCode != null and query.reportCode != ''"> + and tqpr.report_code like concat('%', #{query.reportCode}, '%') + </if> + <if test="query.teamName != null and query.teamName != ''"> + and tpt.team_name like concat('%', #{query.teamName}, '%') + </if> + <if test="query.status != null"> + and tqpr.status = #{query.status} + </if> + <if test="query.teamIds != null and query.teamIds.size() > 0"> + and tqpr.team_id in + <foreach collection="query.teamIds" item="teamId" open="(" separator="," close=")"> + #{teamId} + </foreach> + </if> + AND tqpr.status in (2,3) + AND tqpr.disabled = ${@com.ruoyi.common.enums.DisabledEnum@NO.getCode()} + </where> + ORDER BY tqpr.create_time DESC + </select> </mapper> -- Gitblit v1.7.1