| | |
| | | package com.ruoyi.order.service; |
| | | |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.order.domain.pojo.OrderAuctionBond; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.system.api.domain.dto.OrderAuctionBondDTO; |
| | | import org.apache.poi.ss.formula.functions.T; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | /** |
| | |
| | | * @since 2024-05-16 |
| | | */ |
| | | public interface IOrderAuctionBondService extends IService<OrderAuctionBond> { |
| | | void getOrderAuctionBond( OrderAuctionBondDTO orderAuctionBondDTO); |
| | | R<T> getOrderAuctionBond(OrderAuctionBondDTO orderAuctionBondDTO); |
| | | |
| | | } |