cuilei
2025-05-08 d88a69584bb336b11688b07847ae176da9041009
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.jeecg.modules.tms.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.jeecg.modules.tms.entity.GoodsShelves;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.Map;
 
/**
 * @Description: tms_goods_shelves
 * @Author: jeecg-boot
 * @Date:   2025-05-08
 * @Version: V1.0
 */
public interface IGoodsShelvesService extends IService<GoodsShelves> {
 
    IPage<GoodsShelves> queryPageList(Page<GoodsShelves> page, Map<String, String[]> parameterMap);
}