| | |
| | | import com.ruoyi.auction.controller.management.vo.MgtAuctionSalesroomVO; |
| | | import com.ruoyi.common.core.utils.page.PageDTO; |
| | | import com.ruoyi.system.api.domain.AppMiniLoginVO; |
| | | 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.AppMiniLoginDTO; |
| | | import com.ruoyi.system.api.domain.dto.AuctionSalesroomDTO; |
| | | import com.ruoyi.system.api.domain.dto.BidDTO; |
| | |
| | | import com.ruoyi.system.api.domain.vo.PayInfoVO; |
| | | import com.ruoyi.system.api.domain.vo.WdMemberAuctionSalesroomVO; |
| | | import java.io.IOException; |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | import java.util.Set; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | /** |
| | |
| | | * |
| | | * @param id 拍卖场商品id |
| | | */ |
| | | void stopCurrentGoods(Long id); |
| | | void stopCurrentGoods(Long id) throws JsonProcessingException; |
| | | |
| | | /** |
| | | * 开始下一拍卖商品 |
| | | * |
| | | * @param id 拍卖场商品id |
| | | */ |
| | | void startNextGoods(Long id); |
| | | void startNextGoods(Long id) throws JsonProcessingException; |
| | | |
| | | /** |
| | | * 播放视频 |
| | |
| | | void startCurrentAuctionSalesroom(Long auctionSalesroomId) throws JsonProcessingException; |
| | | |
| | | void stopCurrentAuctionSalesroom(Long auctionSalesroomId) throws JsonProcessingException; |
| | | |
| | | List<AuctionSalesroom> getAuctionSalesroomByIds(Collection<Long> auctionSalesroomGoodsIdSet); |
| | | |
| | | /** |
| | | * 根据商品id获取正在进行的拍卖会 |
| | | * |
| | | * @param id 商品id |
| | | * @return |
| | | */ |
| | | List<AuctionSalesroom> getAuctionSalesroomBySkuId(Long id); |
| | | |
| | | AuctionSalesroomGoods getAuctionSalesroomGoodsById(Long goodsSkuId); |
| | | |
| | | AuctionBondJl getAuctionBondJLBySalesroomId(Long targetId, Long memberId, |
| | | Integer bondType); |
| | | |
| | | List<GoodsSku> getGoodsSkuByAuctionSalesroomGoodsSet(Set<Long> auctionSalesroomGoodsSet); |
| | | } |