自动化立体仓库 - WMS系统
#
Administrator
2 天以前 b61c2d7525bcbdf02db339c1b9865c6032412a8c
src/main/java/com/zy/asrs/service/impl/BasArmRulesServiceImpl.java
@@ -33,4 +33,14 @@
    public boolean updateStatus(Double materialLength,Double materialWidth,Double materialHeight,Double materialWeight,Double materialNumber,int status){
        return this.baseMapper.updateStatus(materialLength,materialWidth,materialHeight,materialWeight,materialNumber,status);
    }
    @Override
    public Integer getNumber(Double weight,Double volume,Double length,Double width,Double height){
        return this.baseMapper.getNumber(weight,volume,length,width,height);
    }
    @Override
    public Integer getStatus(Double weight,Double volume,Double length,Double width,Double height){
        return this.baseMapper.getStatus(weight,volume,length,width,height);
    }
}