fix(测试计划): 修复测试计划报告保留时间未生效问题

--bug=1044722 --user=宋昌昌 【测试计划】github#32364测试计划报告保留时间范围未生效 https://www.tapd.cn/55049933/s/1557876
This commit is contained in:
song-cc-rock 2024-08-02 10:46:14 +08:00 committed by 刘瑞斌
parent 5930968a19
commit 81d49f281b
1 changed files with 3 additions and 4 deletions

View File

@ -45,11 +45,10 @@
</select> </select>
<select id="selectReportIdByProjectIdAndTime" resultType="java.lang.String"> <select id="selectReportIdByProjectIdAndTime" resultType="java.lang.String">
select report.id select report.id
from test_plan_report report from test_plan_report report left join test_plan_report_summary summary
inner join test_plan_report_summary summary on report.id = summary.test_plan_report_id
on report.id = summary.test_plan_report_id = report.id
where report.project_id = #{projectId} where report.project_id = #{projectId}
and report.start_time = #{time} and report.start_time &lt;= #{time}
</select> </select>
<select id="selectReportIdTestPlanIds" resultType="java.lang.String"> <select id="selectReportIdTestPlanIds" resultType="java.lang.String">
select report.id select report.id