fhx
2024-04-16 8bb9c77d61c0d20e8a06e9185bf0a89a16dd6be2
提交 | 用户 | age
f8c50a 1 package com.hz.his.feign.service.platform.bi;
F 2
3 import com.hx.resultTool.Result;
4 import com.hz.his.dto.report.ClinicPerfReqDto;
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-deduction-surface")
16 public interface BiDeductionService {
17
18     /**
19      * 未执行明细列表
20      */
21     @PostMapping("/deduction/surface/list")
22     Result surfaceList(@RequestBody DeductionSurfaceDto deductionSurfaceDto);
23
41ada8 24     /**
F 25      * 未执行明细快照列表
26      */
27     @PostMapping("/deduction/surface/list/data")
28     Result surfaceListData(@RequestBody DeductionSurfaceDto deductionSurfaceDto);
f8c50a 29
F 30 }