提交 | 用户 | age
|
368f31
|
1 |
package com.hz.his.feign.service.platform.bi; |
F |
2 |
|
|
3 |
import com.hx.resultTool.Result; |
|
4 |
import com.hz.his.dto.report.CashierSettlementDto; |
|
5 |
import com.hz.his.dto.report.DeductionSurfaceDto; |
|
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-cashier-settlement") |
|
16 |
public interface BiCashierSettlementService { |
|
17 |
|
|
18 |
/** |
|
19 |
* 出纳结算列表 |
|
20 |
*/ |
|
21 |
@PostMapping("/cashier/settlement/common/list") |
|
22 |
Result cashierSettlementList(@RequestBody CashierSettlementDto cashierSettlementDto); |
|
23 |
|
|
24 |
|
|
25 |
} |