自动化立体仓库 - WCS系统
#
luxiaotao1123
2021-01-04 da7d75a235969e1fcc55d55189f8d30867ea1cfc
src/main/java/com/zy/asrs/service/impl/LocMastServiceImpl.java
@@ -13,8 +13,13 @@
public class LocMastServiceImpl extends ServiceImpl<LocMastMapper, LocMast> implements LocMastService {
    @Override
    public LocMast queryFreeLocMast(Integer row) {
        return this.baseMapper.queryFreeLocMast(row);
    public List<Integer> queryDistinctRow(Integer crnNo) {
        return this.baseMapper.queryDistinctRow(crnNo);
    }
    @Override
    public LocMast queryFreeLocMast(Integer row, Short locType1) {
        return this.baseMapper.queryFreeLocMast(row, locType1);
    }
    @Override
@@ -28,4 +33,15 @@
        }
        return this.baseMapper.queryGroupEmptyStock(sourceStock.getCrnNo());
    }
    @Override
    public LocMast queryDemoSourceLoc(Integer crn) {
        return this.baseMapper.queryDemoSourceLoc(crn);
    }
    @Override
    public LocMast queryDemoLoc(Integer crn) {
        return this.baseMapper.queryDemoLoc(crn);
    }
}