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/feign/get/one") Result getAllGoods(@RequestParam("orderId") String orderId); }