提交 | 用户 | 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 |
|
b8c140
|
49 |
/** |
F |
50 |
* 执行项目-分类联合治疗 |
|
51 |
*/ |
|
52 |
@PostMapping("/admin/doctor/sale/report/project/combination/therapy/list") |
|
53 |
Result combinationTherapy(@RequestBody EmployeeReportDto employeeReportDto); |
|
54 |
|
696bf5
|
55 |
|
F |
56 |
/** |
c74d87
|
57 |
* 执行部位 |
F |
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); |
adee57
|
67 |
|
F |
68 |
/** |
|
69 |
* 重点品项流失预警-项目 |
|
70 |
*/ |
|
71 |
@PostMapping("/admin/doctor/sale/report/loss/project/list") |
|
72 |
Result lossProjectList(@RequestBody EmployeeReportDto employeeReportDto); |
|
73 |
|
|
74 |
/** |
|
75 |
* 重点品项流失预警-营销 |
|
76 |
*/ |
|
77 |
@PostMapping("/admin/doctor/sale/report/loss/project/market/list") |
|
78 |
Result lossProjectMarketList(@RequestBody EmployeeReportDto employeeReportDto); |
|
79 |
|
|
80 |
/** |
|
81 |
* 治疗标签会员数量 |
|
82 |
*/ |
|
83 |
@PostMapping("/admin/doctor/sale/report/treat/label/info/list") |
|
84 |
Result treatLabelInfoList(@RequestBody EmployeeReportDto employeeReportDto); |
|
85 |
|
|
86 |
|
|
87 |
|
|
88 |
|
|
89 |
|
|
90 |
|
|
91 |
|
|
92 |
/** |
|
93 |
* 执行项目-SPU占比 |
|
94 |
*/ |
|
95 |
@PostMapping("/admin/doctor/sale/report/project/spu/list") |
|
96 |
Result projectGeneralList(@RequestBody EmployeeReportDto employeeReportDto); |
696bf5
|
97 |
|
F |
98 |
/** |
|
99 |
* 医生治疗会员情况 |
|
100 |
*/ |
|
101 |
@PostMapping("/admin/doctor/sale/report/treat/user/list") |
|
102 |
Result treatUserList(@RequestBody EmployeeReportDto employeeReportDto); |
|
103 |
|
|
104 |
/** |
c74d87
|
105 |
* 坐诊,接诊,预约数据 |
F |
106 |
*/ |
|
107 |
@PostMapping("/admin/doctor/sale/report/all/list") |
|
108 |
Result allList(@RequestBody EmployeeReportDto employeeReportDto); |
|
109 |
|
|
110 |
/** |
|
111 |
* 顾问关系执行占比 |
|
112 |
*/ |
|
113 |
@PostMapping("/admin/doctor/sale/report/consultant/deduction/list") |
|
114 |
Result userDeductionList(@RequestBody EmployeeReportDto employeeReportDto); |
|
115 |
|
|
116 |
/** |
|
117 |
* 推荐顾客等级占比 |
|
118 |
*/ |
|
119 |
@PostMapping("/admin/doctor/sale/report/user/list") |
|
120 |
Result inviteList(@RequestBody EmployeeReportDto employeeReportDto); |
|
121 |
|
|
122 |
|
|
123 |
} |