liyuqian
2022-09-06 3afb255628cad549b26cb5dda90f63b1f144132c
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
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);
}