提交 | 用户 | age
|
d161eb
|
1 |
package com.hz.his.feign.service.platform.bi; |
R |
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 |
* 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 |
|
12 |
*/ |
|
13 |
@FeignClient(name="phiskin-bi-view-user",path = "/bi-view",contextId = "bi-consultant-source") |
|
14 |
public interface BiConsultantSourceService { |
|
15 |
|
|
16 |
/*** 咨询师-评分列表 */ |
|
17 |
@PostMapping("/admin/consultant/report/source/list") |
|
18 |
Result empSourceList(@RequestBody(required = false) EmployeeReportDto employeeReportDto); |
|
19 |
|
|
20 |
/*** 咨询师-评分列表-导出 */ |
|
21 |
@PostMapping("/admin/consultant/report/emp/source/export") |
|
22 |
Result empSourceExport(@RequestBody(required = false) EmployeeReportDto employeeReportDto); |
|
23 |
|
|
24 |
|
|
25 |
/*** 咨询师-排名-导出 */ |
|
26 |
@PostMapping("/admin/consultant/report/shop/emp/source/export") |
|
27 |
Result shopEmpSourceExport(@RequestBody(required = false) EmployeeReportDto employeeReportDto); |
|
28 |
|
|
29 |
|
|
30 |
} |