提交 | 用户 | age
|
144afd
|
1 |
package com.hz.his.feign.service.platform.bi; |
C |
2 |
|
|
3 |
import com.hx.resultTool.Result; |
|
4 |
import com.hz.his.dto.file.FileExUpdateDto; |
|
5 |
import com.hz.his.dto.file.FileExportDto; |
f01191
|
6 |
import com.hz.his.dto.report.CashierSettlementDto; |
F |
7 |
import com.hz.his.dto.report.DeductionSurfaceDto; |
144afd
|
8 |
import com.hz.his.vo.bi.exp.CashierSettlementVo; |
C |
9 |
import com.hz.his.vo.bi.exp.CashierSurfaceVo; |
|
10 |
import com.hz.his.vo.bi.exp.DeductionSurfaceVo; |
|
11 |
import org.springframework.cloud.openfeign.FeignClient; |
|
12 |
import org.springframework.web.bind.annotation.PostMapping; |
|
13 |
import org.springframework.web.bind.annotation.RequestBody; |
|
14 |
|
|
15 |
/**bi的导出程序 |
|
16 |
* 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 |
|
17 |
*/ |
|
18 |
@FeignClient(name="phiskin-bi-view-user",path = "/bi-view",contextId = "bi-export") |
|
19 |
public interface SExportService { |
|
20 |
|
|
21 |
/** |
|
22 |
* 导出出纳结算表 |
|
23 |
* 无转换 |
|
24 |
*/ |
|
25 |
@PostMapping(value = "/exp/cashier/settlement") |
|
26 |
Result cashierSettlement(@RequestBody CashierSettlementVo cashierSettlementVo); |
|
27 |
|
|
28 |
/** |
|
29 |
* 导出收银报表 |
|
30 |
* 转换无 |
|
31 |
*/ |
|
32 |
@PostMapping(value = "/exp/cashier/surface") |
f01191
|
33 |
Result cashierSurface(@RequestBody CashierSettlementDto cashierSettlementDto); |
144afd
|
34 |
|
C |
35 |
/** |
|
36 |
* 导出划扣报表 |
|
37 |
* 转换无 |
|
38 |
*/ |
|
39 |
@PostMapping(value = "/exp/deduction/surface") |
f01191
|
40 |
Result deductionSurface(@RequestBody DeductionSurfaceDto deductionSurfaceDto); |
144afd
|
41 |
|
C |
42 |
|
|
43 |
} |