| | |
| | | import com.ruoyi.other.api.domain.TVip; |
| | | import com.ruoyi.other.api.factory.VipFallbackFactory; |
| | | 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; |
| | | |
| | |
| | | @PostMapping(value = "/vip/getVipInfoByType") |
| | | R<TVip> getVipInfoByType(@RequestParam Integer type); |
| | | |
| | | |
| | | /** |
| | | * 远程调用 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @PostMapping("/vip/getInfo1") |
| | | public R<TVip> getInfo1(@RequestParam("id") Integer id); |
| | | } |