lxp
2025-03-15 5c92f5ec07c74272c7bfd658ef9c9f5ceb02cfb1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.inspect.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.inspect.dto.WarehouseCellAndSampleDto;
import com.ruoyi.inspect.pojo.WarehouseCell;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
* @author z1292
* @description 针对表【warehouse_cell(货架单元格)】的数据库操作Mapper
* @createDate 2024-04-06 12:12:12
* @Entity com.ruoyi.inspect.pojo.WarehouseCell
*/
@Mapper
public interface WarehouseCellMapper extends BaseMapper<WarehouseCell> {
 
    List<WarehouseCellAndSampleDto> getWarehouse(Integer shelfId);
 
}