|
|
@@ -55,7 +55,8 @@ public class ZrzysiteConstructController extends BaseController {
|
|
|
@GetMapping("/construct/{param}")
|
|
|
//@InnerAuth
|
|
|
public R<String> runConstructScheduled( @PathVariable("param") String param ) {
|
|
|
- //zrzysiteConstructService.syncConstructInfo("");
|
|
|
+ System.out.println("----run task Construct start------");
|
|
|
+ zrzysiteConstructService.syncConstructInfo("");
|
|
|
return R.ok("success1");
|
|
|
}
|
|
|
|
|
|
@@ -63,7 +64,8 @@ public class ZrzysiteConstructController extends BaseController {
|
|
|
@GetMapping("/land/{param}")
|
|
|
//@InnerAuth -- 这里仅设置内部可以调用
|
|
|
public R<String> runLandScheduled( @PathVariable("param") String param ) {
|
|
|
- //zrzysiteConstructService.syncConstructInfo("");
|
|
|
+ System.out.println("----run task land start------");
|
|
|
+ zrzysiteLandService.syncLandInfo();
|
|
|
return R.ok("success1");
|
|
|
}
|
|
|
|
|
|
@@ -71,22 +73,32 @@ public class ZrzysiteConstructController extends BaseController {
|
|
|
@GetMapping("/ghhs/{param}")
|
|
|
//@InnerAuth
|
|
|
public R<String> runGhhsScheduled( @PathVariable("param") String param ) {
|
|
|
- System.out.println("----ghhs start------");
|
|
|
+ System.out.println("----run task ghhs start------");
|
|
|
zrzysiteGhhsService.syncGhhsInfo();
|
|
|
return R.ok("success1");
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
@GetMapping("/updateOnchain")
|
|
|
//@InnerAuth
|
|
|
public R<String> runOnchainScheduled() {
|
|
|
- //zrzysiteConstructService.syncConstructInfo("");
|
|
|
+ //上链 建设用地规划许可
|
|
|
+ zrzysiteConstructService.batchUpdateOnChina("t_jsydghxk");
|
|
|
+
|
|
|
+ //上链 建设工程规划许可
|
|
|
+ zrzysiteConstructService.batchUpdateOnChina("t_jsgcghxk");
|
|
|
+
|
|
|
+ //上链 土地核验与规划核实
|
|
|
+ zrzysiteConstructService.batchUpdateOnChina("t_tdhyhs");
|
|
|
+
|
|
|
System.out.println("daole---dingshi");
|
|
|
return R.ok("修改上链:success1");
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
@GetMapping("/dingshi")
|
|
|
//@InnerAuth
|
|
|
public R<String> dingshi() {
|