bug修复

This commit is contained in:
苏竹红
2023-06-25 16:19:15 +08:00
parent f397fd496b
commit 16fa372047
3 changed files with 4 additions and 4 deletions

View File

@@ -315,7 +315,7 @@
b.interviewer as interviewer,
b.create_time as createTime,
b.room_id as roomId
from hy_partner_interview a inner join hy_partner_interview_plan b on a.interview_plan_id = b.id
from hy_partner_interview a left join hy_partner_interview_plan b on a.interview_plan_id = b.id
<where>
<if test="userId!=null and userId!=''">
and a.interviewer = #{userId}