自动化立体仓库 - WCS系统
#
lsh
2024-06-26 2cebd39fd1514c991da647f08124e18a0b02abe9
src/main/java/com/zy/asrs/service/impl/WrkMastExecuteServiceImpl.java
@@ -22,17 +22,22 @@
    }
    @Override
    public List<WrkMastExecute> sselectWrkMastExecuteByType(Integer type) {
        return this.baseMapper.sselectWrkMastExecuteByType(type);
    public List<WrkMastExecute> selectWrkMastExecuteByType(Integer type) {
        return this.baseMapper.selectWrkMastExecuteByType(type);
    }
    @Override
    public List<WrkMastExecute> sselectWrkMastExecuteByTypeAndIoTyper(Integer type,Integer ioType) {
        return this.baseMapper.sselectWrkMastExecuteByTypeAndIoTyper(type,ioType);
    public List<WrkMastExecute> selectWrkMastExecuteByTypeAndIoTyperAndWrkType(Integer type,Integer ioType,Integer wrkType) {
        return this.baseMapper.selectWrkMastExecuteByTypeAndIoTyperAndWrkType(type,ioType,wrkType);
    }
    @Override
    public List<WrkMastExecute> selectWrkMastExecuteByWrk(WrkMastExecute wrkMastExecute) {
        return this.baseMapper.selectWrkMastExecuteByWrk(wrkMastExecute.getType(),wrkMastExecute.getIoType(),wrkMastExecute.getWrkType(),wrkMastExecute.getSteId(),wrkMastExecute.getJarId(),wrkMastExecute.getRgvId());
    }
    @Override
    public Integer getWrkMastExecuteByJarIdCount(Integer jarId) {
        return this.baseMapper.getWrkMastByJarIdCount(jarId);
        return this.baseMapper.getWrkMastExecuteByJarIdCount(jarId);
    }
}