提交 | 用户 | age
|
c74d87
|
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 |
*/ |
1a9e5c
|
14 |
@FeignClient(name = "phiskin-bi-view-user", path = "/bi-view", contextId = "bi-doctor-perf-sale") |
c74d87
|
15 |
public interface BiDoctorSaleService { |
F |
16 |
|
|
17 |
/** |
|
18 |
* 医生-业绩总列表 |
|
19 |
*/ |
|
20 |
@PostMapping("/admin/doctor/sale/report/deduction/total/list") |
|
21 |
Result deductionList(@RequestBody EmployeeReportDto employeeReportDto); |
|
22 |
|
696bf5
|
23 |
|
c74d87
|
24 |
/** |
F |
25 |
* 医生-执行业绩数据-分门店 |
|
26 |
*/ |
|
27 |
@PostMapping("/admin/doctor/sale/report/deduction/shop/list") |
|
28 |
Result deductionDetailList(@RequestBody EmployeeReportDto employeeReportDto); |
|
29 |
|
|
30 |
/** |
696bf5
|
31 |
* 医生-核心项目占比数据 |
c74d87
|
32 |
*/ |
F |
33 |
@PostMapping("/admin/doctor/sale/report/core/project/list") |
|
34 |
Result coreProjectList(@RequestBody EmployeeReportDto employeeReportDto); |
696bf5
|
35 |
|
F |
36 |
/** |
|
37 |
* 医生-核心项目业绩追踪 |
|
38 |
*/ |
|
39 |
@PostMapping("/admin/doctor/sale/report/core/project/list/shop") |
|
40 |
Result coreProjectShopList(@RequestBody EmployeeReportDto employeeReportDto); |
|
41 |
|
c74d87
|
42 |
|
F |
43 |
/** |
|
44 |
* 执行项目-分类 |
|
45 |
*/ |
|
46 |
@PostMapping("/admin/doctor/sale/report/project/type/list") |
|
47 |
Result projectList(@RequestBody EmployeeReportDto employeeReportDto); |
|
48 |
|
696bf5
|
49 |
|
F |
50 |
/** |
|
51 |
* 执行项目-SPU占比 |
|
52 |
*/ |
|
53 |
@PostMapping("/admin/doctor/sale/report/project/spu/list") |
|
54 |
Result projectGeneralList(@RequestBody EmployeeReportDto employeeReportDto); |
|
55 |
|
c74d87
|
56 |
/** |
F |
57 |
* 执行部位 |
|
58 |
*/ |
|
59 |
@PostMapping("/admin/doctor/sale/report/project/body/list") |
|
60 |
Result bodyList(@RequestBody EmployeeReportDto employeeReportDto); |
|
61 |
|
|
62 |
/** |
696bf5
|
63 |
* 流失数据 |
F |
64 |
*/ |
|
65 |
@PostMapping("/admin/doctor/sale/report/loss/user/list") |
|
66 |
Result lossUserList(@RequestBody EmployeeReportDto employeeReportDto); |
|
67 |
|
|
68 |
/** |
|
69 |
* 医生治疗会员情况 |
|
70 |
*/ |
|
71 |
@PostMapping("/admin/doctor/sale/report/treat/user/list") |
|
72 |
Result treatUserList(@RequestBody EmployeeReportDto employeeReportDto); |
|
73 |
|
|
74 |
/** |
c74d87
|
75 |
* 坐诊,接诊,预约数据 |
F |
76 |
*/ |
|
77 |
@PostMapping("/admin/doctor/sale/report/all/list") |
|
78 |
Result allList(@RequestBody EmployeeReportDto employeeReportDto); |
|
79 |
|
|
80 |
/** |
|
81 |
* 顾问关系执行占比 |
|
82 |
*/ |
|
83 |
@PostMapping("/admin/doctor/sale/report/consultant/deduction/list") |
|
84 |
Result userDeductionList(@RequestBody EmployeeReportDto employeeReportDto); |
|
85 |
|
|
86 |
/** |
|
87 |
* 推荐顾客等级占比 |
|
88 |
*/ |
|
89 |
@PostMapping("/admin/doctor/sale/report/user/list") |
|
90 |
Result inviteList(@RequestBody EmployeeReportDto employeeReportDto); |
|
91 |
|
|
92 |
|
|
93 |
|
|
94 |
} |