package com.steerinfo.dil.feign; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestParam; import java.util.HashMap; import java.util.Map; @FeignClient(value = "ANTAI-REPORT-API", url = "${openfeign.REPORTFeign.url}") public interface ReportFeign { @PostMapping(value = "api/v1/report/monitors/getQYMonitors") Map getQYMonitors(@RequestBody(required = false) HashMap map, @RequestParam Integer apiId, @RequestParam Integer pageNum, @RequestParam Integer pageSize); }