package com.thhy.secure.modules.biz.file.service; import com.thhy.general.common.BasicResult; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.stereotype.Component; import org.springframework.web.bind.annotation.RequestMapping; @Component @FeignClient(value = "filectrl") public interface FileService { @RequestMapping(value = "/file/fileInfo") BasicResult fileinfo(String json); }