This commit is contained in:
杜建超 2020-12-18 14:51:44 +08:00
parent 72ad2910be
commit 62f310d90f

View File

@ -152,12 +152,13 @@
<select id="selectIdsByCopyIds" resultType="long">
select id from lz_evaluation_group where is_delete = 0
and start_id = #{startId}
and copy_id in (
<foreach collection="copyIds" item="copy_id" separator=",">
<foreach collection="copyIds.split(',')" item="copy_id" separator=",">
#{copy_id}
</foreach>
)
and start_id = #{startId}
</select>
<select id="selectEvaluationGroupByCopyId" resultType="EvaluationGroup" >