fwq
2023-05-15 b3298a277c60710068e7edfe031d2f162f7390f5
提交 | 用户 | 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
24
25 }