fix
This commit is contained in:
parent
1206daa643
commit
5a9e697deb
@ -415,20 +415,20 @@
|
||||
where is_delete=0
|
||||
and start_id =#{req.startId}
|
||||
<if test="req.evaluationIds !=null and req.evaluationIds !=''">
|
||||
and r.evaluation_id in(
|
||||
and evaluation_id in(
|
||||
<foreach collection="req.evaluationIds.split(',')" item="evaluation_id" open="(" separator="," close=")">
|
||||
#{evaluation_id}
|
||||
</foreach>
|
||||
)
|
||||
</if>
|
||||
<if test="req.flowProcess !=null">
|
||||
and r.flow_process = #{req.flowProcess}
|
||||
and flow_process = #{req.flowProcess}
|
||||
</if>
|
||||
<if test="req.staffName !=null and req.staffName!=''">
|
||||
and r.staff_name LIKE CONCAT('%',#{req.staffName},'%')
|
||||
and staff_name LIKE CONCAT('%',#{req.staffName},'%')
|
||||
</if>
|
||||
<if test="req.staffIds !=null and req.staffIds !=''">
|
||||
and r.staff_id in(
|
||||
and staff_id in(
|
||||
<foreach collection="req.staffIds.split(',')" item="staff_id" open="(" separator="," close=")">
|
||||
#{staff_id}
|
||||
</foreach>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user