提交 | 用户 | 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 |
|
F |
30 |
|
|
31 |
|
|
32 |
|
|
33 |
} |