|
@@ -103,6 +103,17 @@ public class SubSyncController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "授权主体-烽火应用信息同步")
|
|
|
+ @GetMapping(value = "fhAppSync")
|
|
|
+ public Result fhAppSync() {
|
|
|
+ ResponseStatus response = resourceFacade.fhAppSync();
|
|
|
+ if (ResponseStatus.SUCCESS_CODE.equals(response.getStatusCode())) {
|
|
|
+ return Result.success();
|
|
|
+ } else {
|
|
|
+ return Result.failMessage(response.getMessage());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "授权主体-数据分级同步")
|
|
|
@GetMapping(value = "dataLevelSync")
|
|
|
public Result dataLevelSync() {
|