|
|
|
@ -56,7 +56,7 @@
|
|
|
|
|
<result property="userId" column="user_id"/>
|
|
|
|
|
<result property="deptId" column="dept_id"/>
|
|
|
|
|
<result property="endTime" column="end_time"/>
|
|
|
|
|
<result property="status" column="status"/>
|
|
|
|
|
<result property="activityStatus" column="activityStatus"/>
|
|
|
|
|
<result property="degreeOfMatch" column="degree_of_match"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
@ -116,7 +116,7 @@
|
|
|
|
|
order by bau.degree_of_match desc
|
|
|
|
|
</select>
|
|
|
|
|
<select id="eventRecommendations" resultMap="activityResult">
|
|
|
|
|
select bau.degree_of_match, bau.status, ba.*
|
|
|
|
|
select bau.degree_of_match, bau.status activityStatus, ba.*
|
|
|
|
|
from b_activity_user bau
|
|
|
|
|
left join b_activity ba on bau.activity_id = ba.id
|
|
|
|
|
where ba.status = 1 and bau.degree_of_match != 0
|
|
|
|
|