bug修改 #164

Merged
wangqiong123 merged 1 commits from wq1 into dev 2024-05-31 08:47:09 +00:00
@@ -175,6 +175,17 @@
<if test = 'req.endTime != null and req.endTime != "" '>
and t.createTime &lt;= #{req.endTime}
</if>
<!-- 案件状态id条件-->
<if test = 'req.caseFlowId != null'>
AND t.caseFlowId = #{req.caseFlowId}
</if>
<if test = 'req.caseId != null'>
AND t.id = #{req.caseId}
</if>
<!-- 案件编号-->
<if test = 'req.caseNum != null and req.caseNum != "" '>
AND t.caseNum like concat('%',#{req.caseNum},'%')
</if>
</where> ORDER BY t.createTime desc,t.caseNum desc
</select>