New file |
| | |
| | | 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="phis-service",contextId = "phis-order") |
| | | public interface SOrderService { |
| | | /** |
| | | * 查询用户订单详情接口 |
| | | * @return |
| | | */ |
| | | @RequestMapping("/order/get/one") |
| | | Result getAllGoods(@RequestParam("orderId") String orderId); |
| | | } |