| | |
| | | package com.ruoyi.auction.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
| | | import com.ruoyi.auction.controller.forepart.DTO.ForepartAuctionBidRecordDTO; |
| | | import com.ruoyi.auction.controller.forepart.VO.ForepartAuctionSalesroomVO; |
| | | import com.ruoyi.auction.domain.pojo.AuctionSalesroom; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.auction.domain.pojo.AuctionVideo; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.system.api.domain.SysUser; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2024-05-16 |
| | | */ |
| | | public interface IAuctionSalesroomService extends IService<AuctionSalesroom> { |
| | | /** |
| | | * 拍卖大屏获取拍卖信息 |
| | | * |
| | | */ |
| | | public List<AuctionSalesroom> getAuctionBidRecordList(String salesroomName); |
| | | |
| | | /** |
| | | * 暖场视频or封面海报 |
| | | * |
| | | */ |
| | | public ForepartAuctionSalesroomVO getBaaner(Integer SalesroomId); |
| | | |
| | | |
| | | public AuctionSalesroom getAuctionBidRecordOne(@RequestBody ForepartAuctionBidRecordDTO arepartAuctionBidRecordDTO); |
| | | } |