干燥机配套车间生产管理系统/云平台服务端
bsw215583320
2024-04-09 ae2d52827d289dd985014a63c08b0913d083b215
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.jeecg.modules.dry.api;
 
 
import org.jeecg.common.api.vo.Result;
import org.jeecg.modules.dry.api.fallback.JeecgSystemFallback;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
 
@FeignClient(value = "ichd-system", fallbackFactory = JeecgSystemFallback.class)
@Component
public interface JeecgSystemApi {
 
 
    @GetMapping(value = "/sys/dict/getDictText/{dictCode}/{key}")
    Result<String> getDictText(@PathVariable("dictCode") String dictCode, @PathVariable("key") String key);
}