hyingbo
11 小时以前 7e0152c5c1d1c0cd38b59ffaea3222dcde13012e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 org.jeecg.modules.tms.entity.vo.DictVo;
 
import java.util.List;
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);
 
    List<DictVo> queryGoodsShelvesDictList(String warehouseId);
 
    List<DictVo> queryGoodsShelvesStoreyDictList(String warehouseId, String shelfNumber);
}