| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.zy.asrs.common.domain.dto.QueryStockPreDo; |
| | | import com.zy.asrs.common.domain.dto.ReportStockDto; |
| | | import com.zy.asrs.common.wms.mapper.LocDetlMapper; |
| | | import com.zy.asrs.common.wms.entity.LocDetl; |
| | | import com.zy.asrs.common.wms.service.LocDetlService; |
| | |
| | | Page<LocDetl> page = new Page<>(curr, limit); |
| | | return this.baseMapper.getStockOutPage(page, param); |
| | | } |
| | | |
| | | @Override |
| | | public List<ReportStockDto> getReportStockDto(Long hostId) { |
| | | return this.baseMapper.getReportStockDto(hostId); |
| | | } |
| | | } |