Browse Source

1、解决火苗儿接口搜索全职职位的问题

rayson 8 months ago
parent
commit
5361eea764

+ 1 - 1
menduner/menduner-system-biz/src/main/resources/mapper/fair/FairDetailMapper.xml

@@ -96,8 +96,8 @@
         mde_fair as f
         inner join mde_fair_detail as d on f.id = d.job_fair_id
         inner join mde_job_advertised as a on d.job_id = a.id
-        inner join mde_job_advertised_extend as x on a.id = x.job_id
         inner join mde_enterprise as e on a.enterprise_id = e.id
+        left join mde_job_advertised_extend as x on a.id = x.job_id
         left join mde_enterprise_business as b on e.id = b.enterprise_id
         <where>
             (f.deleted=0 and f.end_time > now() and d.deleted = 0 and d.status !=2) and a.deleted = 0 and e.deleted = 0