后台新增了审核时间

This commit is contained in:
2025-07-01 16:20:26 +08:00
parent 405fe91c65
commit 29367a8aaf
2 changed files with 12 additions and 1 deletions
@@ -56,6 +56,10 @@
<if test="queryForm.hospitalUuid != null and queryForm.hospitalUuid != ''">
AND t_caseplatform_expert.hospital_uuid =#{queryForm.hospitalUuid}
</if>
<!-- 审核时间区间 -->
<if test="queryForm.examineTime != null and queryForm.examineTime.size == 2">
AND t_caseplatform_case.examine_time BETWEEN #{queryForm.examineTime[0]} AND #{queryForm.examineTime[1]}
</if>
</where>
order by t_caseplatform_case.create_time desc
</select>