| | |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.baomidou.mybatisplus.service.impl.ServiceImpl; |
| | | import com.zy.asrs.entity.LocDetl; |
| | | import com.zy.asrs.entity.result.LocDetlAll; |
| | | import com.zy.asrs.entity.result.LocDetlDTO; |
| | | import com.zy.asrs.entity.result.StockVo; |
| | | import com.zy.asrs.mapper.LocDetlMapper; |
| | | import com.zy.asrs.service.LocDetlService; |
| | |
| | | } |
| | | |
| | | @Override |
| | | public int selectAllCount(LocDetlDTO locDetlDTO) { |
| | | return this.baseMapper.selectAllCount(locDetlDTO); |
| | | } |
| | | |
| | | @Override |
| | | public List<LocDetlAll> selectAllOwner(LocDetlDTO locDetlDTO) { |
| | | return this.baseMapper.selectAllOwner(locDetlDTO); |
| | | } |
| | | |
| | | @Override |
| | | public Page<LocDetl> getStockOut(Page<LocDetl> page) { |
| | | page.setRecords(baseMapper.getStockOutPage(page.getCondition())); |
| | | page.setTotal(baseMapper.getStockOutPageCount(page.getCondition())); |