| | |
| | | import com.ruoyi.system.api.domain.AuctionBondJl; |
| | | import com.ruoyi.system.api.domain.AuctionSalesroom; |
| | | import com.ruoyi.system.api.domain.AuctionSalesroomGoods; |
| | | import com.ruoyi.system.api.domain.GoodsSku; |
| | | import com.ruoyi.system.api.domain.dto.MemberAuctionSalesroomBondDTO; |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | import java.util.Set; |
| | | import javax.annotation.Resource; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | |
| | | return R.ok(iAuctionSalesroomService.getAuctionBondJLBySalesroomId(targetId, |
| | | memberId, bondType)); |
| | | } |
| | | |
| | | /** |
| | | * 根据拍卖场商品id获取商品信息 |
| | | * |
| | | * @param auctionSalesroomGoodsSet |
| | | * @return |
| | | */ |
| | | @InnerAuth |
| | | @PostMapping("/getGoodsSkuByAuctionSalesroomGoodsSet") |
| | | R<List<GoodsSku>> getGoodsSkuByAuctionSalesroomGoodsSet( |
| | | @RequestBody Set<Long> auctionSalesroomGoodsSet) { |
| | | return R.ok(iAuctionSalesroomService.getGoodsSkuByAuctionSalesroomGoodsSet( |
| | | auctionSalesroomGoodsSet)); |
| | | } |
| | | } |