| | |
| | | /** |
| | | * @Author |
| | | */ |
| | | @FeignClient(name="synchro-service",path = "/his_synchro",contextId = "synchro-project") |
| | | @FeignClient(name="phi-platform-user",path = "/his_synchro",contextId = "synchro-project") |
| | | public interface SyncProjectService { |
| | | |
| | | /** |
| | |
| | | */ |
| | | @GetMapping(value = "/sync/project/update/service/tree") |
| | | Result updateServiceTree(@RequestBody JSONObject jsonObject); |
| | | |
| | | /** |
| | | * 同步his用户可划扣的数据 |
| | | * @param jsonObject 参数 |
| | | * @return 返回 |
| | | */ |
| | | @GetMapping(value = "/sync/executionRecord/executable") |
| | | Result syncExecutionRecord(@RequestBody JSONObject jsonObject); |
| | | } |