|
@@ -36,7 +36,7 @@ import java.util.Map;
|
|
|
public class GzwController {
|
|
|
@PostMapping("/emptyAreaList")
|
|
|
public String getAllLeader( Integer page, Integer size){
|
|
|
- String s = "http://219.152.50.209:81/api/app/asLeaseDispositionIndex/emptyAreaList?page="+page+"&size="+size;
|
|
|
+ String s = "https://219.152.50.209:81/api/app/asLeaseDispositionIndex/emptyAreaList?page="+page+"&size="+size;
|
|
|
String post = HttpUtil.post(s, new HashMap<>());
|
|
|
System.out.println(post);
|
|
|
JSONObject entries = JSONUtil.parseObj(post);
|
|
@@ -47,7 +47,7 @@ public class GzwController {
|
|
|
@PostMapping("/voPage")
|
|
|
public String voPage(@RequestBody String json){
|
|
|
|
|
|
- String s = "http://219.152.50.209:81/api/app/official/asLeaseDispositionInfo/voPage";
|
|
|
+ String s = "https://219.152.50.209:81/api/app/official/asLeaseDispositionInfo/voPage";
|
|
|
System.out.println(json);
|
|
|
String result2 = HttpRequest.post(s)
|
|
|
.header("Content-Type","application/json")
|
|
@@ -63,14 +63,14 @@ public class GzwController {
|
|
|
|
|
|
@PostMapping("/info")
|
|
|
public String info(@RequestBody String json){
|
|
|
- String s = "http://219.152.50.209:81/api/app/official/asLeaseDispositionInfo/getVo";
|
|
|
- System.out.println(json);
|
|
|
+ String s = "https://219.152.50.209:81/api/app/official/asLeaseDispositionInfo/getVo";
|
|
|
+// System.out.println(json);
|
|
|
String result2 = HttpRequest.post(s)
|
|
|
.header("Content-Type","application/json")
|
|
|
.body(json)
|
|
|
.execute().body();
|
|
|
|
|
|
- System.out.println(result2);
|
|
|
+// System.out.println(result2);
|
|
|
// JSONObject entries = JSONUtil.parseObj(post);
|
|
|
|
|
|
return result2 ;
|
|
@@ -79,7 +79,7 @@ public class GzwController {
|
|
|
|
|
|
@PostMapping("/contactList")
|
|
|
public String contactList(Integer page, Integer size){
|
|
|
- String s = "http://219.152.50.209:81/api/app/asLeaseDispositionIndex/contactList?page="+page+"&size="+size;
|
|
|
+ String s = "https://219.152.50.209:81/api/app/asLeaseDispositionIndex/contactList?page="+page+"&size="+size;
|
|
|
String post = HttpUtil.post(s, new HashMap<>());
|
|
|
System.out.println(post);
|
|
|
JSONObject entries = JSONUtil.parseObj(post);
|