提交 | 用户 | 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 |
|
|
23 |
/** |
|
24 |
* 医生-执行业绩数据-分门店 |
|
25 |
*/ |
|
26 |
@PostMapping("/admin/doctor/sale/report/deduction/shop/list") |
|
27 |
Result deductionDetailList(@RequestBody EmployeeReportDto employeeReportDto); |
|
28 |
|
|
29 |
|
|
30 |
/** |
|
31 |
* 医生-核心项目 |
|
32 |
*/ |
|
33 |
@PostMapping("/admin/doctor/sale/report/core/project/list") |
|
34 |
Result coreProjectList(@RequestBody EmployeeReportDto employeeReportDto); |
|
35 |
|
|
36 |
/** |
|
37 |
* 执行项目-分类 |
|
38 |
*/ |
|
39 |
@PostMapping("/admin/doctor/sale/report/project/type/list") |
|
40 |
Result projectList(@RequestBody EmployeeReportDto employeeReportDto); |
|
41 |
|
|
42 |
/** |
|
43 |
* 执行部位 |
|
44 |
*/ |
|
45 |
@PostMapping("/admin/doctor/sale/report/project/body/list") |
|
46 |
Result bodyList(@RequestBody EmployeeReportDto employeeReportDto); |
|
47 |
|
|
48 |
/** |
|
49 |
* 坐诊,接诊,预约数据 |
|
50 |
*/ |
|
51 |
@PostMapping("/admin/doctor/sale/report/all/list") |
|
52 |
Result allList(@RequestBody EmployeeReportDto employeeReportDto); |
|
53 |
|
|
54 |
/** |
|
55 |
* 顾问关系执行占比 |
|
56 |
*/ |
|
57 |
@PostMapping("/admin/doctor/sale/report/consultant/deduction/list") |
|
58 |
Result userDeductionList(@RequestBody EmployeeReportDto employeeReportDto); |
|
59 |
|
|
60 |
/** |
|
61 |
* 推荐顾客等级占比 |
|
62 |
*/ |
|
63 |
@PostMapping("/admin/doctor/sale/report/user/list") |
|
64 |
Result inviteList(@RequestBody EmployeeReportDto employeeReportDto); |
|
65 |
|
|
66 |
|
|
67 |
|
|
68 |
} |