123456789101112131415161718192021 |
- package com.steerinfo.dil.feign;
- import org.springframework.cloud.openfeign.FeignClient;
- import org.springframework.stereotype.Service;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestParam;
- import java.util.List;
- import java.util.Map;
- /**
- * @Author zhangnan
- * @Date 2021/6/23 9:58
- * @Version 1.0
- */
- @Service
- @FeignClient(value = "DIL-COLUMN-DATA-DEV",url = "https://portal-dev.steerinfo.com/icore.icp.web/pass/dal-dazhou/dil-cd-api")
- public interface ColumnDataFeign {
- @RequestMapping("getColumnData")
- List<Map<String,Object>> getColumnData(@RequestParam("apiId") Integer apiId);
- }
|