| | |
| | | import com.ruoyi.other.api.domain.BaseSetting; |
| | | import com.ruoyi.other.api.factory.BaseSettingClientFallbackFactory; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @PostMapping("/base-setting/getBaseSetting") |
| | | @GetMapping("/base-setting/getBaseSetting") |
| | | R<BaseSetting> getBaseSetting(@RequestParam("id") Integer id); |
| | | } |