|
@ -64,7 +64,8 @@ public class BaseServiceNewsService {
|
|
|
orgCodes = orgCodes.replaceAll(",","','");
|
|
|
filter = " and code not in ('"+orgCodes+"')";
|
|
|
}
|
|
|
String sql = "SELECT code,name,brief,address,photo,mobile,longitude,latitude,type from base_org WHERE type in ('3','4','6') and del =1";
|
|
|
String sql = "SELECT code,name,brief,address,photo,mobile,longitude,latitude,type from base_org WHERE type in ('3','4','6') and del =1 " +
|
|
|
" and code not in ('zdjsylfwyxgszhfgs') ";
|
|
|
sql += filter;
|
|
|
List<Map<String,Object>> list = jdbcTemplate.queryForList(sql);
|
|
|
return list;
|