This commit is contained in:
杜建超 2020-11-11 09:56:23 +08:00
parent 144ea5fdde
commit efa71997b9

View File

@ -455,7 +455,7 @@
and r.start_id = #{req.startId}
<if test="req.copyEvaluationIds !=null and req.copyEvaluationIds !=''">
and r.evaluation_id in(
<foreach collection="req.copyEvaluationIds.split(',')" item="evaluation_id" separator="">
<foreach collection="req.copyEvaluationIds.split(',')" item="evaluation_id" separator=",">
#{evaluation_id}
</foreach>
)
@ -468,7 +468,7 @@
</if>
<if test="req.staffIds !=null and req.staffIds !=''">
and r.staff_id in(
<foreach collection="req.staffIds.split(',')" item="staff_id" separator="">
<foreach collection="req.staffIds.split(',')" item="staff_id" separator=",">
#{staff_id}
</foreach>
)