This commit is contained in:
苏竹红
2024-01-05 17:20:31 +08:00
parent a68a183e5c
commit 6c28b50487
4 changed files with 5 additions and 3 deletions

View File

@@ -84,6 +84,7 @@
<select id="exhibitionLineList" resultType="com.cool.store.dto.exhibition.ExhibitionLineDTO">
select
hpe.exhibition_id as exhibitionId ,
hpe.interview_plan_id as planId,
hpe.partner_id as partnerId,
hpe.partner_line_id as lineId,
hpe.participation_status as participationStatus,

View File

@@ -1035,9 +1035,8 @@
from hy_partner_interview_plan a
left join enterprise_user b on a.interviewer = b.user_id
<where>
and a.deleted = 0
<if test="list!=null and list.size>0">
<foreach collection="list" item="lineId" open="and a.partner_line_id in (" close=")" separator=",">
<foreach collection="list" item="lineId" open="and a.id in (" close=")" separator=",">
#{lineId}
</foreach>
</if>