lxp
2025-03-15 5c92f5ec07c74272c7bfd658ef9c9f5ceb02cfb1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.inspect.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.inspect.pojo.WarehouseShelf;
import org.apache.ibatis.annotations.Mapper;
 
/**
* @author z1292
* @description 针对表【warehouse_shelf(货架)】的数据库操作Mapper
* @createDate 2024-04-06 12:12:12
* @Entity com.ruoyi.inspect.pojo.WarehouseShelf
*/
@Mapper
public interface WarehouseShelfMapper extends BaseMapper<WarehouseShelf> {
 
}