sql="from t_base_organization where org_id=bureau_id and org_type_id=9 and org_name like '%" +keyword+"%' ";
if(school_type_id>0)sql+=" and school_type_id=" +school_type_id;
sql="from t_base_organization as t1 inner join t_dm_schooltype as t2 on t1.school_type_id=t2.school_type_id where t1.org_id=t1.bureau_id and t1.org_type_id=9 and t1.org_name like '%" +keyword+"%' ";
if(school_type_id>0)sql+=" and t1.school_type_id=" +school_type_id;
sql+=Conditions;
}else{//县区审核员
sql="select * from t_base_organization where org_id=?";
sql="from t_base_organization where org_id=bureau_id and org_type_id=16 and area_id='" +area_id+
"' and org_name like '%" +keyword+"%' ";
sql="from t_base_organization as t1 inner join t_dm_schooltype as t2 on t1.school_type_id=t2.school_type_id where t1.org_id=t1.bureau_id and t1.org_type_id=16 and t1.area_id='" +area_id+