| | |
| | | import io.swagger.annotations.ApiOperation; |
| | | import java.util.List; |
| | | import javax.annotation.Resource; |
| | | 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 org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | @ApiOperation(value = "用户端-拍卖场商品详情") |
| | | public R<AuctionSalesroomGoodsInfoVO> getAuctionSalesroomGoodsInfo(@RequestBody AuctionSalesroomGoodsInfoDTO auctionSalesroomGoodsInfoDTO) { |
| | | return R.ok(iAuctionSalesroomGoodsService.getAuctionSalesroomGoodsInfo(auctionSalesroomGoodsInfoDTO)); |
| | | } |
| | | |
| | | @GetMapping("/setPopup/{id}") |
| | | @ApiOperation("标记已弹出弹窗") |
| | | public R<?> setPopup(@PathVariable("id") Long id) { |
| | | iAuctionSalesroomGoodsService.setPopup(id); |
| | | return R.ok(); |
| | | } |
| | | |
| | | |