自动化立体仓库 - WMS系统
#
Junjie
5 天以前 551c12a53738e35cf615f3005d14215124488600
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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();
 
    List<LocMast> selectLoc(int[] rows);
}