| | |
| | | package com.ruoyi.system.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ruoyi.system.domain.TOrderSaleGoods; |
| | | import com.ruoyi.system.domain.TOrderStockGoods; |
| | | import com.ruoyi.system.mapper.TOrderStockGoodsMapper; |
| | | import com.ruoyi.system.query.TDataGeneratorStockQuery; |
| | | import com.ruoyi.system.service.TOrderStockGoodsService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @Service |
| | | public class TOrderStockGoodsServiceImpl extends ServiceImpl<TOrderStockGoodsMapper, TOrderStockGoods> implements TOrderStockGoodsService { |
| | | |
| | | @Override |
| | | public List<TOrderStockGoods> getListByTimeAndShopId(String orderTime, Long shopId) { |
| | | return this.baseMapper.getListByTimeAndShopId(orderTime,shopId); |
| | | } |
| | | |
| | | @Override |
| | | public void deleteByOrderId(List<Long> stockIds) { |
| | | this.baseMapper.deleteByOrderId(stockIds); |
| | | } |
| | | } |