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