| | |
| | | import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.jeecg.modules.tms.entity.GoodsShelves; |
| | | import org.jeecg.modules.tms.entity.vo.DictVo; |
| | | import org.jeecg.modules.tms.mapper.GoodsShelvesMapper; |
| | | import org.jeecg.modules.tms.service.IGoodsShelvesService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | |
| | | import java.util.Collections; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | queryWrapper.orderByDesc("t.create_time"); |
| | | return this.baseMapper.queryPageList(page, queryWrapper); |
| | | } |
| | | |
| | | @Override |
| | | public List<DictVo> queryGoodsShelvesDictList(String warehouseId) { |
| | | return this.baseMapper.queryGoodsShelvesDictList(warehouseId); |
| | | } |
| | | |
| | | @Override |
| | | public List<DictVo> queryGoodsShelvesStoreyDictList(String warehouseId, String shelfNumber) { |
| | | return this.baseMapper.queryGoodsShelvesStoreyDictList(warehouseId, shelfNumber); |
| | | } |
| | | } |