提交 | 用户 | age
|
7418f9
|
1 |
package com.hz.his.feign.service.platform.bi; |
F |
2 |
|
|
3 |
import com.hx.resultTool.Result; |
|
4 |
import com.hz.his.dto.report.ClinicPerfReqDto; |
|
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-clinic-perf") |
|
15 |
public interface BiClinicPerfService { |
|
16 |
|
|
17 |
/** |
|
18 |
* 诊所现金业绩 |
|
19 |
*/ |
2484a5
|
20 |
@PostMapping("/admin/clinic/perf/list") |
7418f9
|
21 |
Result cashList(@RequestBody ClinicPerfReqDto reqDto); |
F |
22 |
|
|
23 |
/** |
|
24 |
* 诊所现金业绩-支付类型汇总 |
|
25 |
*/ |
|
26 |
@PostMapping("/admin/clinic/perf/cashPayTypeSummary") |
|
27 |
Result cashPayTypeSummary(@RequestBody ClinicPerfReqDto reqDto); |
|
28 |
|
|
29 |
/** |
|
30 |
* 诊所执行业绩 |
|
31 |
*/ |
|
32 |
@PostMapping("/admin/clinic/perf/deduct/list") |
|
33 |
Result deductList(@RequestBody ClinicPerfReqDto reqDto); |
|
34 |
|
|
35 |
/** |
|
36 |
* 收银详细列表 |
|
37 |
*/ |
|
38 |
@PostMapping("/admin/clinic/perf/cashierDetailList") |
|
39 |
Result cashierDetailList(@RequestBody ClinicPerfReqDto reqDto); |
|
40 |
|
d0e8d8
|
41 |
/** 导出 - 收银详细列表 */ |
F |
42 |
@PostMapping("/admin/clinic/perf/exportCashierDetail") |
|
43 |
Result exportCashierDetail(@RequestBody ClinicPerfReqDto reqDto); |
7418f9
|
44 |
|
F |
45 |
|
|
46 |
} |