|
@@ -11,6 +11,7 @@
|
|
|
javaType="com.citu.module.menduner.system.controller.app.jobhunt.flame.AppFlameJobAdvertisedRespVO"
|
|
|
autoMapping="true">
|
|
|
<result property="tagList" column="tag_list" typeHandler="com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler"/>
|
|
|
+ <result property="id" column="job_id"/>
|
|
|
</association>
|
|
|
|
|
|
|
|
@@ -41,6 +42,7 @@
|
|
|
resultMap="AppFlameJobRespVOResultMap" >
|
|
|
select
|
|
|
e.name as enterprise_name,
|
|
|
+ f.id as job_id,
|
|
|
a.*,x.*,e.*,b.*
|
|
|
from
|
|
|
mde_job_fair as f
|
|
@@ -83,6 +85,14 @@
|
|
|
and x.major_id = #{majorId}
|
|
|
</if>
|
|
|
|
|
|
+ <if test="reqVO.jobIds != null and reqVO.jobIds.size() > 0 ">
|
|
|
+ f.id in
|
|
|
+ <foreach collection="reqVO.jobIds" item="item" separator="," open="(" close=")">
|
|
|
+ #{item}
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
+
|
|
|
+
|
|
|
</where>
|
|
|
ORDER BY d.create_time ,a.update_time DESC
|
|
|
|