提交 | 用户 | age
|
d2d359
|
1 |
package com.hz.his.feign.service.platform.bi; |
F |
2 |
|
|
3 |
import com.hx.resultTool.Result; |
|
4 |
import com.hz.his.dto.report.EmployeeReportDto; |
|
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-arrive-report") |
|
15 |
public interface BiArriveReportService { |
|
16 |
|
|
17 |
/** |
|
18 |
* 预约到访分析-门店数据 |
|
19 |
*/ |
|
20 |
@PostMapping("/report/arrive/shop/list") |
|
21 |
Result shopDataList(@RequestBody EmployeeReportDto employeeReportDto); |
|
22 |
|
|
23 |
/** |
|
24 |
* 预约到访分析-咨询师 |
|
25 |
*/ |
|
26 |
@PostMapping("/report/arrive/employee/list") |
|
27 |
Result empDataList(@RequestBody EmployeeReportDto employeeReportDto); |
|
28 |
|
|
29 |
/** |
|
30 |
* 预约到访分析-门店数据-导出 |
|
31 |
*/ |
|
32 |
@PostMapping("/report/arrive/shop/list/export") |
|
33 |
Result shopDataListExport(@RequestBody EmployeeReportDto employeeReportDto); |
|
34 |
|
|
35 |
/** |
|
36 |
* 预约到访分析-咨询师-导出 |
|
37 |
*/ |
|
38 |
@PostMapping("/report/arrive/employee/list/export") |
|
39 |
Result empDataListExport(@RequestBody EmployeeReportDto employeeReportDto); |
|
40 |
|
|
41 |
|
|
42 |
} |