| | |
| | | import com.ruoyi.goods.api.model.TGoodsVO; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | @PostMapping("/base/goods/getGoodsTypeList") |
| | | R<List<TGoodsType>> getGoodsInfo(); |
| | | |
| | | /** |
| | | * 可兑换商品推荐 |
| | | * |
| | | * @param userId 用户id |
| | | * @return 推荐商品信息 |
| | | */ |
| | | @GetMapping("/goodRecommend") |
| | | @ApiOperation(value = "可兑换商品推荐", tags = {"可兑换商品推荐"}) |
| | | R<List<TGoodsVO>> goodRecommend(String userId); |
| | | |
| | | } |