cmg
2024-04-30 314a4b858417df3d0e97049c3bf36e91cdf228ee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.hz.his.feign.service.phisAdmin;
 
import com.hx.resultTool.Result;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
 
/**
 * 预约后台订单接口
 *
 * @Author: zhouxiang
 * @Date: 2022/09/27/15:59
 * @Description:
 */
@FeignClient(name="phi-pre-sys",contextId = "phis-order")
public interface SOrderService {
    /**
     * 查询订单详情接口
     * @return
     */
    @RequestMapping("/order/feign/get/one")
    Result getAllGoods(@RequestParam("orderId") String orderId);
}