select branch_bill_other_fee_id, top_organization_id, organization_id, organization_name, bill_code, first_subject, first_subject_name, second_subject, second_subject_name, revenue_expenses_type, money, create_time, create_by, create_by_name, update_time, update_by, update_by_name, del_flag from branch_bill_other_fee
and top_organization_id = #{topOrganizationId}
and organization_id = #{organizationId}
and organization_name like concat('%', #{organizationName}, '%')
and bill_code = #{billCode}
and first_subject = #{firstSubject}
and first_subject_name like concat('%', #{firstSubjectName}, '%')
and second_subject = #{secondSubject}
and second_subject_name like concat('%', #{secondSubjectName}, '%')
and revenue_expenses_type = #{revenueExpensesType}
and money = #{money}
and create_by_name like concat('%', #{createByName}, '%')
and update_by_name like concat('%', #{updateByName}, '%')
AND del_flag = #{delFlag} AND del_flag = 1