zss
2024-08-01 30a143f368dd2ff6e9c27b9d5dd17923ffed03ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.yuanchu.mom.mapper;
 
import com.yuanchu.mom.pojo.WarehouseShelf;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
/**
* @author z1292
* @description 针对表【warehouse_shelf(货架)】的数据库操作Mapper
* @createDate 2024-04-06 12:12:12
* @Entity com.yuanchu.mom.pojo.WarehouseShelf
*/
public interface WarehouseShelfMapper extends BaseMapper<WarehouseShelf> {
 
}