自动化立体仓库 - WMS系统
#
Junjie
2025-09-27 9f83a9d589aaf22cb790515272a425216ea618b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.LocDetl;
import com.zy.asrs.entity.LocMast;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface LocMastService extends IService<LocMast> {
    /**
     * 获取同组货架的空库位
     * @param sourceLocNo 源库位
     * @return 同组空库位集合
     */
    List<String> queryGroupEmptyStock(String sourceLocNo);
 
    List<Integer> getLevList();
}