1c22dc6053f79e3190310373bcce1d25ca641e7c.svn-base 392 B

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