update cai_user_count set new_fans_count = new_fans_count + 1 where user_id = #{userId} update cai_user_count set new_visitor_count = new_visitor_count + 1 where user_id = #{userId} update cai_user_count set foot_count = foot_count + #{footIncs}, visitor_count = visitor_count + #{visitorIncs} where user_id = #{userId} update cai_user_count set new_fans_count = 0 where user_id = #{userId} and new_fans_count > 0 update cai_user_count set new_visitor_count = 0 where user_id = #{userId} and new_visitor_count > 0