fhx
2024-04-16 8bb9c77d61c0d20e8a06e9185bf0a89a16dd6be2
提交 | 用户 | age
bb3b55 1 package com.hz.his.feign.service.platform.bi;
F 2
3 import com.hx.resultTool.Result;
4 import com.hz.his.dto.report.ShopCashReportDto;
5 import com.hz.his.dto.report.ShopReportDto;
6 import org.springframework.cloud.openfeign.FeignClient;
7 import org.springframework.web.bind.annotation.PostMapping;
8 import org.springframework.web.bind.annotation.RequestBody;
9
10
11 /**
12  * 门店业绩报表
13  * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀
14  */
15 @FeignClient(name="phiskin-bi-view-user",path = "/bi-view",contextId = "bi-shop-cash")
16 public interface BiShopCashService {
17
18     /**
19      * 门店业绩报表
20      * ArriveShopVo
21      */
22     @PostMapping("/report/shop/cash/list")
23     Result shopList(@RequestBody ShopCashReportDto shopCashReportDto);
24
25 }