¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.warehouse.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.warehouse.dto.WarehouseGoodsShelvesDto; |
| | | import com.ruoyi.warehouse.pojo.WarehouseGoodsShelves; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author 86151 |
| | | * @description é对表ãwarehouse_goods_shelves(ä»åºè´§æ¶è¡¨)ãçæ°æ®åºæä½Service |
| | | * @createDate 2025-08-13 11:49:02 |
| | | */ |
| | | public interface WarehouseGoodsShelvesService extends IService<WarehouseGoodsShelves> { |
| | | |
| | | |
| | | boolean add(WarehouseGoodsShelves warehouseGoodsShelves); |
| | | |
| | | boolean updateRowcolById(WarehouseGoodsShelves warehouseGoodsShelves); |
| | | |
| | | boolean deleteByIds(List<Long> ids); |
| | | |
| | | List<WarehouseGoodsShelvesDto> findList(WarehouseGoodsShelves warehouseGoodsShelves); |
| | | } |