提交 | 用户 | age
|
bb3b55
|
1 |
package com.hz.his.feign.service.platform.bi; |
F |
2 |
|
|
3 |
import com.hx.resultTool.Result; |
|
4 |
import com.hz.his.dto.report.PerformanceReqParamsDto; |
|
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 |
*/ |
|
14 |
@FeignClient(name = "phiskin-bi-view-user", path = "/bi-view", contextId = "bi-doctor-perf") |
|
15 |
public interface BiDoctorPerfService { |
|
16 |
|
|
17 |
/** |
|
18 |
* 医生执行业绩 |
|
19 |
*/ |
|
20 |
@PostMapping("/admin/doctor/perf/list") |
|
21 |
Result list(@RequestBody PerformanceReqParamsDto performanceReqParamsDto); |
|
22 |
|
|
23 |
/** |
|
24 |
* 医生执行业绩汇总 |
|
25 |
*/ |
|
26 |
@PostMapping("/admin/doctor/perf/summary/list") |
|
27 |
Result summaryList(@RequestBody PerformanceReqParamsDto performanceReqParamsDto); |
|
28 |
|
|
29 |
|
d4b90b
|
30 |
/** |
F |
31 |
* 医生业绩导出 |
|
32 |
*/ |
|
33 |
@PostMapping("/admin/doctor/perf/export") |
|
34 |
Result export(@RequestBody PerformanceReqParamsDto performanceReqParamsDto); |
|
35 |
|
|
36 |
/** |
|
37 |
* 医生业绩汇总导出 |
|
38 |
*/ |
|
39 |
@PostMapping("/admin/doctor/perf/summary/export") |
|
40 |
Result sumExport(@RequestBody PerformanceReqParamsDto performanceReqParamsDto); |
bb3b55
|
41 |
|
F |
42 |
|
|
43 |
} |