| | |
| | | package com.ruoyi.warehouse.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.warehouse.pojo.WarehouseGoodsShelvesRowcol; |
| | | import com.ruoyi.warehouse.dto.WarehouseGoodsShelvesRowcolDto; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | */ |
| | | public interface WarehouseGoodsShelvesRowcolService extends IService<WarehouseGoodsShelvesRowcol> { |
| | | |
| | | IPage<WarehouseGoodsShelvesRowcol> listPage(Page page, WarehouseGoodsShelvesRowcol warehouseGoodsShelvesRowcol); |
| | | |
| | | boolean deleteByIds(List<Long> ids); |
| | | |
| | | |
| | | // boolean add(WarehouseGoodsShelvesRowcol warehouseGoodsShelvesRowcol); |
| | | List<WarehouseGoodsShelvesRowcolDto> getList(WarehouseGoodsShelvesRowcol warehouseGoodsShelvesRowcol); |
| | | |
| | | |
| | | |
| | | } |