| | |
| | | package com.ruoyi.auction.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ruoyi.auction.controller.forepart.DTO.AuctionSalesroomGoodsDTO; |
| | | import com.ruoyi.auction.controller.forepart.VO.AuctionSalesroomVO; |
| | | import com.ruoyi.auction.controller.forepart.VO.ForepartAuctionSalesroomGoodsVO; |
| | | import com.ruoyi.auction.domain.pojo.AuctionBidRecord; |
| | | import com.ruoyi.auction.domain.pojo.AuctionSalesroom; |
| | | import com.ruoyi.auction.domain.pojo.AuctionSalesroomGoods; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.auction.mapper.AuctionSalesroomGoodsMapper; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.common.core.enums.AuctionStartStatusEnum; |
| | | import com.ruoyi.common.core.enums.BidStatusEnum; |
| | | import com.ruoyi.system.api.domain.GoodsSku; |
| | | import com.ruoyi.system.api.feignClient.GoodsSkuClient; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.apache.poi.ss.formula.functions.T; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.time.LocalDateTime; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2024-05-16 |
| | | */ |
| | | public interface IAuctionSalesroomGoodsService extends IService<AuctionSalesroomGoods> { |
| | | ForepartAuctionSalesroomGoodsVO getAuctionSalesroomGoods(Integer SalesroomId); |
| | | |
| | | /** |
| | | * 拍卖师端拍卖场信息 |
| | | * |
| | | */ |
| | | AuctionSalesroomVO getAuctionSalesroominfo(Integer SalesroomId); |
| | | |
| | | /** |
| | | * 拍卖师端拍卖场立即开始 |
| | | * |
| | | */ |
| | | void auctionSalesroomStart(Integer SalesroomId); |
| | | |
| | | /** |
| | | * 拍卖师端拍卖场立即开始 |
| | | * |
| | | */ |
| | | void auctionSalesroomEnd(Integer SalesroomId); |
| | | |
| | | |
| | | /** |
| | | * 拍卖师端拍卖场立即开始 |
| | | * |
| | | */ |
| | | List<AuctionSalesroomGoods> isAuctionSalesroom(Integer SalesroomId); |
| | | |
| | | |
| | | /** |
| | | * 拍卖师端拍卖场下一个立即开始 |
| | | * |
| | | */ |
| | | void auctionSalesroomGoodsStart(AuctionSalesroomGoodsDTO auctionSalesroomGoodsDTO); |
| | | |
| | | void auctionSalesroomGoodsEnd(AuctionSalesroomGoodsDTO auctionSalesroomGoodsDTO); |
| | | |
| | | } |