解决bug

This commit is contained in:
wulin 2020-11-03 17:36:09 +08:00
parent 84c6c42bd7
commit dc2f9cdb3f

View File

@ -170,11 +170,12 @@
<select id="selectStaffIdsByStartAndStaffId" resultType="long">
select staff_id from lz_evaluation_start_staff where start_id=#{startId} and is_delete = 0
and start_id in (
and staff_id in (
<foreach collection="list" item="item" separator=",">
#{item.id}
</foreach>
)
group by staff_id
</select>
</mapper>