fhx
2024-04-16 8bb9c77d61c0d20e8a06e9185bf0a89a16dd6be2
提交 | 用户 | age
b971ad 1 package com.hz.his.feign.service.platform.bi;
R 2
3 import com.hx.resultTool.Result;
4 import com.hz.his.dto.report.ShopIndicatorsDto;
5 import org.springframework.cloud.openfeign.FeignClient;
6 import org.springframework.web.bind.annotation.PostMapping;
7 import org.springframework.web.bind.annotation.RequestBody;
8
9 /**
10  * 咨询师评分报表
11  * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀
12  */
13 @FeignClient(name = "phiskin-bi-view-user", path = "/bi-view", contextId = "bi-shop-indicators")
14 public interface BiShopIndicatorsService {
15
16     /*** 咨询师-评分列表 */
17     @PostMapping("/admin/shop/indicators/list")
18     Result shopEmpDeductionList(@RequestBody(required = false) ShopIndicatorsDto shopIndicatorsDto);
19
20 }