rx
2023-08-24 e120516fddb94b85a74a7a0f6ced0c998e7629fd
提交 | 用户 | age
d161eb 1 package com.hz.his.feign.service.platform.bi;
R 2
3 import com.hx.resultTool.Result;
4 import com.hz.his.dto.report.EmployeeReportDto;
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-consultant-source")
14 public interface BiConsultantSourceService {
15
16     /*** 咨询师-评分列表 */
17     @PostMapping("/admin/consultant/report/source/list")
18     Result empSourceList(@RequestBody(required = false) EmployeeReportDto employeeReportDto);
19
20     /*** 咨询师-评分列表-导出 */
e12051 21     @PostMapping("/admin/consultant/report/source/emp/source/export")
d161eb 22     Result empSourceExport(@RequestBody(required = false) EmployeeReportDto employeeReportDto);
R 23
24
25     /*** 咨询师-排名-导出 */
e12051 26     @PostMapping("/admin/consultant/report/source/shop/emp/source/export")
d161eb 27     Result shopEmpSourceExport(@RequestBody(required = false) EmployeeReportDto employeeReportDto);
R 28
29
30 }