feat(training): 添加按记录ID列表查询培训申请审批详情功能

dev
zhaokai 2026-03-07 16:42:42 +08:00
parent b85affbfcb
commit 9894cff3b6
1 changed files with 4 additions and 4 deletions

View File

@ -217,16 +217,16 @@
and s.exam_sign_flag = #{params.examination}
</if>
<if test="params.eqState != null ">
<if test = "params.eqState = 1">
<if test = "params.eqState == 1">
and c.state = 1
</if>
<if test = "params.eqState = 2">
<if test = "params.eqState == 2">
and c.state = 2 and c.start_time > now()
</if>
<if test = "params.eqState = 3">
<if test = "params.eqState == 3">
and c.state = 2 and c.end_time > now() and c.start_time &lt;= now()
</if>
<if test = "params.eqState = 4">
<if test = "params.eqState == 4">
and c.state = 2 and c.end_time &lt;= now()
</if>
</if>