wangrenhuang
2022-07-14 4c7f60e2eb7330015f46b1fd31c4cf81183d3fc3
提交 | 用户 | age
7c680b 1 package com.hz.his.feign.service;
C 2
3 import com.hx.resultTool.Result;
4 import com.hz.his.dto.PageDto;
5 import org.springframework.cloud.openfeign.FeignClient;
6 import org.springframework.web.bind.annotation.PostMapping;
7 import org.springframework.web.bind.annotation.RequestBody;
8 import org.springframework.web.bind.annotation.RequestParam;
9
10 /**
11  * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀
12  */
13 @FeignClient(name="phis-provider",path = "/p-his-data",contextId = "card")
14 public interface SCardItemService {
15
16     /**
17      * 获取卡项详情
18      * @param cardId 卡项标识
19      * @return Result
20      */
21     @PostMapping(value = "/cardItem/detail")
22     Result getCardItemDetail(@RequestParam("cardId") String cardId);
23
24     /**
25      * 获取卡项门店价格
26      * @param cardId 卡项标识
27      * @param shopId 门店id
28      * @return Result
29      */
30     @PostMapping(value = "/cardItem/getShopPrice")
31     Result getCardItemShopPrice(@RequestParam("cardId") String cardId, @RequestParam("shopId") String shopId);
32
33
34     /**
35      * 根据子订单号获取卡项使用详情
36      * @param orderItemNo
37      */
38     @PostMapping(value = "/cardItem/used/orderItemNo")
39     Result getCardUsed(@RequestParam("orderItemNo") String orderItemNo);
40
41     /**
42      * 获取门店列表
43      * @return Result
44      */
45     @PostMapping(value = "/cardItem/page/list")
46     Result getCardList(@RequestBody PageDto pageDto);
47
48 }