feat(training): 添加按记录ID列表查询培训申请审批详情功能
parent
b85affbfcb
commit
9894cff3b6
|
|
@ -217,16 +217,16 @@
|
||||||
and s.exam_sign_flag = #{params.examination}
|
and s.exam_sign_flag = #{params.examination}
|
||||||
</if>
|
</if>
|
||||||
<if test="params.eqState != null ">
|
<if test="params.eqState != null ">
|
||||||
<if test = "params.eqState = 1">
|
<if test = "params.eqState == 1">
|
||||||
and c.state = 1
|
and c.state = 1
|
||||||
</if>
|
</if>
|
||||||
<if test = "params.eqState = 2">
|
<if test = "params.eqState == 2">
|
||||||
and c.state = 2 and c.start_time > now()
|
and c.state = 2 and c.start_time > now()
|
||||||
</if>
|
</if>
|
||||||
<if test = "params.eqState = 3">
|
<if test = "params.eqState == 3">
|
||||||
and c.state = 2 and c.end_time > now() and c.start_time <= now()
|
and c.state = 2 and c.end_time > now() and c.start_time <= now()
|
||||||
</if>
|
</if>
|
||||||
<if test = "params.eqState = 4">
|
<if test = "params.eqState == 4">
|
||||||
and c.state = 2 and c.end_time <= now()
|
and c.state = 2 and c.end_time <= now()
|
||||||
</if>
|
</if>
|
||||||
</if>
|
</if>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue