zhangxu
2022-09-23 3331e358f12dd29b15eb94e6f57d0d11ccd8182c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.hz.his.feign.service.sync;
 
import com.alibaba.fastjson.JSONObject;
import com.hx.resultTool.Result;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestBody;
 
/**
 * @Author
 */
@FeignClient(name="synchro-service",path = "/his_synchro",contextId = "synchro-project")
public interface SyncProjectService {
 
    /**
     * 新增项目分类
     * @param jsonObject
     * @return
     */
    @GetMapping(value = "/sync/project/add/service/tree")
    Result addServiceTree(@RequestBody JSONObject jsonObject);
 
    /**
     * 修改
     * @param jsonObject
     * @return
     */
    @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);
}