|
@@ -2,16 +2,20 @@ package cn.com.taiji.web.service.impl;
|
|
|
|
|
|
import cn.com.taiji.common.domain.PageResult;
|
|
|
import cn.com.taiji.common.domain.Result;
|
|
|
+import cn.com.taiji.cql.model.GeoDataSource;
|
|
|
import cn.com.taiji.cql.service.IECqlService;
|
|
|
import cn.com.taiji.web.config.EnterpriseConfig;
|
|
|
+import cn.com.taiji.web.model.DeviceInfo;
|
|
|
import cn.com.taiji.web.service.IEnterpriseService;
|
|
|
import cn.com.taiji.web.vo.DeviceVo;
|
|
|
import cn.com.taiji.web.vo.EnterpriseVo;
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.geotools.jdbc.JDBCDataStoreFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
+import java.util.ArrayList;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
@@ -38,22 +42,21 @@ public class EnterpriseServiceImpl implements IEnterpriseService {
|
|
|
entDsParams.put(JDBCDataStoreFactory.PORT.key, enterpriseConfig.getDsPort());
|
|
|
entDsParams.put(JDBCDataStoreFactory.USER.key, enterpriseConfig.getDsUserName());
|
|
|
entDsParams.put(JDBCDataStoreFactory.PASSWD.key, enterpriseConfig.getDsPassword());
|
|
|
- entDsParams.put("tableName", enterpriseConfig.getDsTableName());
|
|
|
-
|
|
|
- //组装排序参数
|
|
|
- Map<String, Object> sortParams = new HashMap<String, Object>();
|
|
|
- sortParams.put("sort","asc");
|
|
|
+ entDsParams.put("tableName", enterpriseConfig.getEnterprise());
|
|
|
|
|
|
//组装分页参数
|
|
|
Map<String, Object> pageParams = new HashMap<String, Object>();
|
|
|
pageParams.put("pageSize",enterpriseVo.getPageSize());
|
|
|
- pageParams.put("pageNumber",enterpriseVo.getPageSize());
|
|
|
+ pageParams.put("pageNumber",enterpriseVo.getPageNumber());
|
|
|
+
|
|
|
+ Map<String, Object> sortParams = new HashMap<String, Object>();
|
|
|
+ sortParams.put("id","desc");
|
|
|
|
|
|
//组转cql查询条件
|
|
|
StringBuffer filterCql = new StringBuffer();
|
|
|
if(enterpriseVo.getEntName() !=null && !"".equals(enterpriseVo.getEntName())){
|
|
|
|
|
|
- filterCql.append("(entName like '%"+enterpriseVo.getEntName()+"%')");
|
|
|
+ filterCql.append("(qymc like '%"+enterpriseVo.getEntName()+"%')");
|
|
|
|
|
|
}
|
|
|
|
|
@@ -61,10 +64,10 @@ public class EnterpriseServiceImpl implements IEnterpriseService {
|
|
|
|
|
|
if(filterCql.length() >0){
|
|
|
|
|
|
- filterCql.append(" and (entType = '"+enterpriseVo.getEntType()+"')");
|
|
|
+ filterCql.append(" and (qykx = '"+enterpriseVo.getEntType()+"')");
|
|
|
}else{
|
|
|
|
|
|
- filterCql.append(" (entType = '"+enterpriseVo.getEntType()+"')");
|
|
|
+ filterCql.append(" (qykx = '"+enterpriseVo.getEntType()+"')");
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -86,7 +89,7 @@ public class EnterpriseServiceImpl implements IEnterpriseService {
|
|
|
entDsParams.put(JDBCDataStoreFactory.PORT.key, enterpriseConfig.getDsPort());
|
|
|
entDsParams.put(JDBCDataStoreFactory.USER.key, enterpriseConfig.getDsUserName());
|
|
|
entDsParams.put(JDBCDataStoreFactory.PASSWD.key, enterpriseConfig.getDsPassword());
|
|
|
- entDsParams.put("tableName", enterpriseConfig.getDsTableName());
|
|
|
+ entDsParams.put("tableName", enterpriseConfig.getDevice());
|
|
|
|
|
|
//组转cql查询条件
|
|
|
StringBuffer filterCql = new StringBuffer();
|
|
@@ -95,23 +98,34 @@ public class EnterpriseServiceImpl implements IEnterpriseService {
|
|
|
|
|
|
filterCql.append("(DWITHIN(location," + wkt + ", "+deviceVo.getRadius()+", kilometers))");
|
|
|
|
|
|
- if(deviceVo.getEntCode() !=null && !"".equals(deviceVo.getEntCode())){
|
|
|
|
|
|
- if(filterCql.length() >0){
|
|
|
|
|
|
- filterCql.append(" and (entCode = '"+deviceVo.getEntCode()+"')");
|
|
|
- }else{
|
|
|
+ PageResult pageResult = ecqlService.cqlQuery4Mysql(entDsParams,filterCql.toString(),null,null);
|
|
|
|
|
|
- filterCql.append(" (entCode = '"+deviceVo.getEntCode()+"')");
|
|
|
- }
|
|
|
+ List<DeviceInfo> deviceInfoList = new ArrayList<DeviceInfo>();
|
|
|
+
|
|
|
+ if(pageResult.getResp_code() ==0){
|
|
|
|
|
|
+ List<Map<String, Object>> dataList = (List<Map<String, Object>>) pageResult.getDatas();
|
|
|
+
|
|
|
+ for(Map<String, Object> dataMap:dataList){
|
|
|
+
|
|
|
+ if(dataMap.containsKey("location")){
|
|
|
+
|
|
|
+ dataMap.remove("location");
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ DeviceInfo deviceInfo = JSONObject.parseObject(JSONObject.toJSONString(dataMap), DeviceInfo.class);
|
|
|
+ deviceInfoList.add(deviceInfo);
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- System.out.println("查询条件:"+filterCql.toString());
|
|
|
+ System.out.println("查询条件:"+filterCql.toString()+" 记录数:"+deviceInfoList.size());
|
|
|
|
|
|
- PageResult pageResult = ecqlService.cqlQuery4Mysql(entDsParams,filterCql.toString(),null,null);
|
|
|
|
|
|
- return Result.of(pageResult.getDatas().toString(),pageResult.getResp_code(),pageResult.getResp_msg());
|
|
|
+ return Result.of(deviceInfoList,pageResult.getResp_code(),pageResult.getResp_msg());
|
|
|
|
|
|
|
|
|
}
|