| | |
| | | import org.springframework.cloud.openfeign.FallbackFactory; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2024/8/16 13:48 |
| | |
| | | public R<TGoods> getGoodsById(Integer id) { |
| | | return R.fail("根据id获取商品信息失败:" + throwable.getMessage()); |
| | | } |
| | | |
| | | @Override |
| | | public R<List<Integer>> getGoodsIdsByName(String name) { |
| | | return R.fail("根据商品名称获取商品ids失败:" + throwable.getMessage()); |
| | | } |
| | | |
| | | @Override |
| | | public R updateGoods(TGoods goods) { |
| | | throw new RuntimeException("修改商品异常"); |
| | | } |
| | | }; |
| | | } |
| | | |