zhuguifei
2025-04-28 0218ec09998552d392b7ff622eb3a76795b11c32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.jeecg.modules.cloud.feign.feign;
 
import org.jeecg.common.api.vo.Result;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
 
/**
 * 动态feign接口定义
 */
public interface JeecgTestClientDyn {
 
    @GetMapping(value = "/test/getMessage")
    Result<String> getMessage(@RequestParam("name") String name);
}