fhx
2024-02-05 74527e7ce6ab1a5e09d3d4936e5157188e983e49
提交 | 用户 | age
4e4027 1 package com.hz.his.feign.service.platform.bi;
F 2
3 import com.hx.resultTool.Result;
4 import com.hz.his.dto.activityData.ActivityReportDto;
5 import org.springframework.cloud.openfeign.FeignClient;
6 import org.springframework.web.bind.annotation.PostMapping;
7 import org.springframework.web.bind.annotation.RequestBody;
8
9
10 /**
11  * 升单报表
12  * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀
13  */
14 @FeignClient(name = "phiskin-bi-view-user", path = "/bi-view", contextId = "bi-activity-report")
15 public interface BiActivityReportService {
16
17     /**
9c2f97 18      * 导出
4e4027 19      */
F 20     @PostMapping("/activity/report/export")
9c2f97 21     Result export(@RequestBody ActivityReportDto activityReportDto);
4e4027 22 }