提交 | 用户 | 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.CoreProjectReportDto; |
|
5 |
import com.hz.his.dto.report.CxjReportReqDto; |
|
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 |
* CXJ报表 |
|
13 |
* 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 |
|
14 |
*/ |
|
15 |
@FeignClient(name = "phiskin-bi-view-user", path = "/bi-view", contextId = "bi-cxj-project") |
|
16 |
public interface BiCxjService { |
|
17 |
|
|
18 |
/** |
|
19 |
* 预约情况 |
|
20 |
*/ |
|
21 |
@PostMapping("/admin/cxj/report/appointmentSituation") |
|
22 |
Result appointmentSituation(@RequestBody CxjReportReqDto cxjReportReqDto); |
|
23 |
|
|
24 |
/** |
|
25 |
* 顾问客户预约和到店时间折线图 |
|
26 |
*/ |
|
27 |
@PostMapping("/admin/cxj/report/appTimeLineChart") |
|
28 |
Result appTimeLineChart(@RequestBody CxjReportReqDto cxjReportReqDto); |
|
29 |
|
|
30 |
/** |
|
31 |
* 等待情况 |
|
32 |
*/ |
957977
|
33 |
@PostMapping("/admin/cxj/report/waitSituation") |
bb3b55
|
34 |
Result waitSituation(@RequestBody CxjReportReqDto cxjReportReqDto); |
F |
35 |
|
|
36 |
/** |
|
37 |
* 面诊情况 |
|
38 |
*/ |
|
39 |
@PostMapping("/admin/cxj/report/consultSituation") |
|
40 |
Result consultSituation(@RequestBody CxjReportReqDto cxjReportReqDto); |
|
41 |
|
|
42 |
|
|
43 |
} |