fhx
2023-11-06 dfc2c78531b7ea0e27aff23a0f1d10a6b4bad49d
提交 | 用户 | 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.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  * 员工-客户分析
12  * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀
13  */
14 @FeignClient(name = "phiskin-bi-view-user", path = "/bi-view", contextId = "bi-emp-user")
15 public interface BiEmpUserService {
16
17     /**
18      * 医生执行业绩
19      */
20     @PostMapping("/admin/employee/user/analyse/list")
21     Result list(@RequestBody EmployeeReportDto employeeReportDto);
22
23     /**
24      * 查看客户分析数据V1版本
25      */
26     @PostMapping("/admin/employee/user/analyse/list/V1")
27     Result analyseListOne(@RequestBody EmployeeReportDto employeeReportDto);
28
29
30 }