| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.jeecg.modules.tms.entity.GoodsShelves; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.tms.entity.vo.DictVo; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | public interface IGoodsShelvesService extends IService<GoodsShelves> { |
| | | |
| | | IPage<GoodsShelves> queryPageList(Page<GoodsShelves> page, Map<String, String[]> parameterMap); |
| | | |
| | | List<DictVo> queryGoodsShelvesDictList(String warehouseId); |
| | | |
| | | List<DictVo> queryGoodsShelvesStoreyDictList(String warehouseId, String shelfNumber); |
| | | } |