select material_classify_id, organization_id, organization_name, top_organization_id, code, name, level, parent_code,
parent_name, code_path, name_path, remark, nullify, create_time, create_by, create_by_name, update_time, update_by,
update_by_name, del_flag,CHARGE_STANDARD,unit,
monthly_warehouse_rent, half_month_warehouse_rent, monthly_warehouse_rent_unit, half_month_warehouse_rent_unit
from material_classify
and organization_id = #{organizationId}
and organization_name like concat('%', #{organizationName}, '%')
and top_organization_id = #{topOrganizationId}
and code = #{code}
and name like concat('%', #{name}, '%')
and level = #{level}
and parent_code = #{parentCode}
and parent_name like concat('%', #{parentName}, '%')
and code_path = #{codePath}
and name_path = #{namePath}
and nullify = #{nullify}
and create_by_name like concat('%', #{createByName}, '%')
and update_by_name like concat('%', #{updateByName}, '%')
and remark like concat('%', #{remark}, '%')
and del_flag = #{delFlag} and del_flag = 1