fhx
2024-04-16 8bb9c77d61c0d20e8a06e9185bf0a89a16dd6be2
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package com.hz.his.feign.service.sync;
 
/**
 * @Author
 */
 
import com.hx.resultTool.Result;
import com.hz.his.dto.sync.SyncOrderDto;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
 
/**
 * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀
 */
@FeignClient(name="synchro-service",path = "/his_synchro",contextId = "synchro-order")
public interface SyncOrderService {
 
    /**
     * 根据用户id获取领健订单信息
     * @param orderId
     * @return
     */
    @GetMapping(value = "/sync/order/getOrderById")
    Result getOrderById(@RequestParam("orderId") String orderId);
 
    /**
     * 修改领健订单为作废订单
     * 注意不要随意调用,需要用到先和同步中心商量
     * @param syncOrderDto
     * @return
     */
    @PostMapping(value = "/sync/order/cancelOrder")
    Result cancelOrder(SyncOrderDto syncOrderDto);
 
    /**
     * 修改领建订单为退款状态
     * 注意不要随意调用,需要用到先和同步中心商量
     * @param syncOrderDto
     * @return
     */
    @PostMapping(value = "/sync/order/refundOrder")
    Result refundOrder(SyncOrderDto syncOrderDto);
    /**
     * 修改领建订单为部分退款状态
     * 注意不要随意调用,需要用到先和同步中心商量
     * @param syncOrderDto
     * @return
     */
    @PostMapping(value = "/sync/order/partialRefund")
    Result partialRefund(SyncOrderDto syncOrderDto);
 
 
}