提交 | 用户 | age
|
a499bd
|
1 |
package com.hz.his.feign.service.platform.bi; |
F |
2 |
|
|
3 |
import com.hx.resultTool.Result; |
|
4 |
import com.hz.his.dto.report.CxjReportReqDto; |
|
5 |
import com.hz.his.dto.report.UserReportListDto; |
|
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 |
* 用户数据 |
|
13 |
* 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 |
|
14 |
*/ |
|
15 |
@FeignClient(name = "phiskin-bi-view-user", path = "/bi-view", contextId = "bi-user-data") |
|
16 |
public interface BiUserService { |
|
17 |
|
|
18 |
/** |
75c8d6
|
19 |
* 用户现金执行数据 |
a499bd
|
20 |
*/ |
75c8d6
|
21 |
@PostMapping("/admin/user/report/money/data/list") |
bf8dc5
|
22 |
Result cashTotalList(@RequestBody UserReportListDto userReportListDto); |
a499bd
|
23 |
|
F |
24 |
|
|
25 |
} |