|
|
@@ -875,7 +875,7 @@
|
|
|
left join user_career uc on uc.uid = u.id
|
|
|
left join achievement_demand_count adc on adc.uid = u.id
|
|
|
where
|
|
|
- ui.celebrity = 1 or ui.expert = 1
|
|
|
+ (ui.celebrity = 1 or ui.expert = 1)
|
|
|
<if test="number != null">
|
|
|
and u.number = #{number,jdbcType=INTEGER}
|
|
|
</if>
|
|
|
@@ -905,7 +905,7 @@
|
|
|
left join user_identity ui on ui.uid = u.id
|
|
|
left join user_career uc on uc.uid = u.id
|
|
|
where
|
|
|
- ui.celebrity = 1 or ui.expert = 1
|
|
|
+ (ui.celebrity = 1 or ui.expert = 1)
|
|
|
<if test="number != null">
|
|
|
and u.number = #{number,jdbcType=INTEGER}
|
|
|
</if>
|