| | |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.domain.TOrderSaleGoods; |
| | | import com.ruoyi.system.vo.SalesRankingVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.math.BigDecimal; |
| | |
| | | * @author xiaochen |
| | | * @since 2024-08-14 |
| | | */ |
| | | @Mapper |
| | | public interface TOrderSaleGoodsMapper extends BaseMapper<TOrderSaleGoods> { |
| | | |
| | | /** |
| | |
| | | */ |
| | | List<SalesRankingVO> salesRanking(@Param("ids")List<Long> ids, @Param("pageInfo")PageInfo<SalesRankingVO> pageInfo); |
| | | |
| | | /** |
| | | * 删除销售单商品 |
| | | * @param saleIds |
| | | */ |
| | | void deleteByOrderId(@Param("saleIds")List<Long> saleIds); |
| | | |
| | | } |