自动化立体仓库 - WMS系统
#
LSH
2023-02-13 d342a867237abd94c565ee3d04225d23ac4c4444
src/main/java/com/zy/asrs/service/impl/LocMastServiceImpl.java
@@ -24,6 +24,22 @@
    }
    @Override
    public LocMast queryFreeLocMast1(Integer row, Short locType1 ,int channelMax) {
        return this.baseMapper.queryFreeLocMast1(row, locType1 ,channelMax);
    }
    @Override
    public LocMast queryFreeLocMast2(Integer row, Short locType1, Short locType2) {
        return this.baseMapper.queryFreeLocMast2(row, locType1 ,locType2);
    }
    @Override
    public Integer queryFreeLocMastCount(Integer row, Short locType1, Short locType2) {
        return this.baseMapper.queryFreeLocMastCount(row, locType1 ,locType2);
    }
    @Override
    public List<String> queryGroupEmptyStock(String sourceLocNo) {
        if (Cools.isEmpty(sourceLocNo)) {
            return null;
@@ -48,4 +64,8 @@
        return null;
    }
    @Override
    public List<LocMast> queryShallowLocFMast(Integer crnNo) {
        return this.baseMapper.queryShallowLocFMast(crnNo);
    }
}