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); }