1.1.4发版 #165

Merged
wangqiong123 merged 14 commits from dev into prod 2024-06-03 02:27:08 +00:00
Showing only changes of commit a08092eb37 - Show all commits
@@ -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>