|
@@ -4202,6 +4202,14 @@ public class RuralProjectMessageService extends CrudService<RuralProjectMessageD
|
|
|
Map map = new HashMap();
|
|
|
map.put("contractId",contractId);
|
|
|
String coordinateMapStr = SignaturePostUtil.doGet( map,HTTPTOP + "/contract/query/location");
|
|
|
+ //暂时性进行数据处理
|
|
|
+ coordinateMapStr = coordinateMapStr.replaceAll("\\\\","");
|
|
|
+ while(coordinateMapStr.contains("\"categoryKeyWord\":\"{")){
|
|
|
+ coordinateMapStr = coordinateMapStr.replace("\"categoryKeyWord\":\"{","");
|
|
|
+ }
|
|
|
+ while(coordinateMapStr.contains(",\"rectNum\":[]}\"")){
|
|
|
+ coordinateMapStr = coordinateMapStr.replace(",\"rectNum\":[]}\"","");
|
|
|
+ }
|
|
|
HashMap hashMap = JSON.parseObject(coordinateMapStr, HashMap.class);
|
|
|
String resultStr = hashMap.get("result").toString();
|
|
|
Map classMap = new HashMap();
|