提交 | 用户 | age
|
9bcdda
|
1 |
package com.hz.his.feign.service.platform.bi; |
F |
2 |
|
|
3 |
import com.hx.resultTool.Result; |
|
4 |
import com.hz.his.dto.report.AppointmentVisitVo; |
|
5 |
import com.hz.his.dto.report.ShopReportDto; |
|
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-rel-pro") |
|
16 |
public interface BiRelationProjectService { |
|
17 |
|
|
18 |
/** |
|
19 |
* 门店执行业绩数据 |
|
20 |
*/ |
|
21 |
@PostMapping("/admin/project/relation/report/shop/list") |
|
22 |
Result deductionShopList(@RequestBody ShopReportDto shopReportDto); |
|
23 |
|
|
24 |
/** |
|
25 |
* 医生执行业绩数据 |
|
26 |
*/ |
|
27 |
@PostMapping("/admin/project/relation/report/doctor/list") |
7003bd
|
28 |
Result deductionDoctorList(@RequestBody ShopReportDto shopReportDto); |
9bcdda
|
29 |
|
5dce1d
|
30 |
/** |
F |
31 |
* 产品部-执行业绩数据 |
|
32 |
*/ |
|
33 |
@PostMapping("/admin/project/relation/report/department/cp/list") |
|
34 |
Result deductionCpList(@RequestBody ShopReportDto shopReportDto); |
9bcdda
|
35 |
|
5dce1d
|
36 |
/** |
F |
37 |
* 再生部-执行业绩数据 |
|
38 |
*/ |
|
39 |
@PostMapping("/admin/project/relation/report/department/zs/list") |
|
40 |
Result deductionZsList(@RequestBody ShopReportDto shopReportDto); |
|
41 |
|
|
42 |
/** |
|
43 |
* 再生部-渗透业绩数据 |
|
44 |
*/ |
|
45 |
@PostMapping("/admin/project/relation/report/department/zs/permeate/list") |
|
46 |
Result deductionZsPermeateList(@RequestBody ShopReportDto shopReportDto); |
|
47 |
|
|
48 |
/** |
|
49 |
* 增长部-医生私域群数据-渗透业绩 |
|
50 |
*/ |
|
51 |
@PostMapping("/admin/group/report/zs/doctor/list") |
|
52 |
Result deductionZsDoctorList(@RequestBody ShopReportDto shopReportDto); |
9bcdda
|
53 |
|
F |
54 |
|
|
55 |
} |