fhx
2024-04-16 8bb9c77d61c0d20e8a06e9185bf0a89a16dd6be2
提交 | 用户 | age
bb3b55 1 package com.hz.his.feign.service.platform.bi;
F 2
3 import com.hx.resultTool.Result;
fc6bc8 4 import com.hz.his.dto.employee.EmpUserPlanDto;
bb3b55 5 import com.hz.his.dto.report.EmployeeReportDto;
F 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-emp-user")
16 public interface BiEmpUserService {
17
18     /**
19      * 医生执行业绩
20      */
21     @PostMapping("/admin/employee/user/analyse/list")
22     Result list(@RequestBody EmployeeReportDto employeeReportDto);
23
24     /**
25      * 查看客户分析数据V1版本
26      */
27     @PostMapping("/admin/employee/user/analyse/list/V1")
28     Result analyseListOne(@RequestBody EmployeeReportDto employeeReportDto);
29
30
fc6bc8 31     /**
F 32      * 查看客户开发计划
33      */
34     @PostMapping("/admin/employee/user/plan/list")
35     Result employeeUserPlanList(@RequestBody EmpUserPlanDto empUserPlanDto);
36
37     /**
38      * 查看要通知的开发计划完成度
39      */
40     @PostMapping("/admin/employee/user/plan/list/rate")
41     Result employeeUserPlanRate(@RequestBody EmpUserPlanDto empUserPlanDto);
42
bb3b55 43 }