| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.tms.entity.GoodsShelves; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.jeecg.modules.tms.entity.vo.DictVo; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: tms_goods_shelves |
| | |
| | | |
| | | IPage<GoodsShelves> queryPageList(Page<GoodsShelves> page, |
| | | @Param(Constants.WRAPPER) Wrapper<GoodsShelves> queryWrapper); |
| | | |
| | | List<DictVo> queryGoodsShelvesDictList(@Param("warehouseId") String warehouseId); |
| | | |
| | | List<DictVo> queryGoodsShelvesStoreyDictList(@Param("warehouseId") String warehouseId, |
| | | @Param("shelfNumber") String shelfNumber); |
| | | } |