自动化立体仓库 - WMS系统
zyx
2024-03-27 1365b4833632f2d1c5fb346cd700e2e998010db6
src/main/java/com/zy/asrs/service/impl/AgvBasDevpServiceImpl.java
@@ -84,11 +84,12 @@
        return agvBasDevp;
    }
    public void updateLocStsAndBarcodeByDevNo(String devNo, String locSts, String barcode){
    public void updateLocStsAndBarcodeByDevNo(String devNo, String locSts, String barcode, Short containerType){
        AgvBasDevp agvBasDevp = this.selectById(devNo);
        agvBasDevp.setLocSts(locSts);
        agvBasDevp.setBarcode(barcode);
        agvBasDevp.setLocType2(containerType);
        this.updateById(agvBasDevp);
    }
@@ -263,6 +264,11 @@
        return this.baseMapper.selectCacheShelvesStationCodeByFloor(floor);
    }
    @Override
    public List<String> selectCacheShelvesStationCodeByLocType(short locType) {
        return this.baseMapper.selectCacheShelvesStationCodeByLocType(locType);
    }
    public List<Map<String,Object>> selectDevNoAndNumBystationCode(String stationCode){
        return this.baseMapper.selectDevNoAndNumBystationCode(stationCode);
    }