| | |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | @Service |
| | | /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/service/impl/WarehouseGridServiceImpl.class */ |
| | | public class WarehouseGridServiceImpl extends BaseServiceImpl<WarehouseGridMapper, WarehouseGrid> implements IWarehouseGridService { |
| | | private IWarehouseStationService warehouseStationService; |
| | | |
| | |
| | | this.warehouseStationService = warehouseStationService; |
| | | } |
| | | |
| | | @Override // org.springblade.modules.cps.service.IWarehouseGridService |
| | | |
| | | public WarehouseGridVO create(WarehouseGridCreateVO warehouseGridCreateVO) { |
| | | WarehouseGrid warehouseGrid = WarehouseGridConvert.INSTANCE.convert(warehouseGridCreateVO); |
| | | checkWarehouseGrid(warehouseGrid); |
| | |
| | | return WarehouseGridConvert.INSTANCE.convert(warehouseGrid); |
| | | } |
| | | |
| | | @Override // org.springblade.modules.cps.service.IWarehouseGridService |
| | | |
| | | public WarehouseGridVO update(WarehouseGridUpdateVO warehouseGridUpdateVO) { |
| | | WarehouseGrid warehouseGrid = WarehouseGridConvert.INSTANCE.convert(warehouseGridUpdateVO); |
| | | checkWarehouseGrid(warehouseGrid); |
| | |
| | | return WarehouseGridConvert.INSTANCE.convert(warehouseGrid); |
| | | } |
| | | |
| | | @Override // org.springblade.modules.cps.service.IWarehouseGridService |
| | | |
| | | public List<WarehouseGridVO> listByStationId(Long stationId) { |
| | | List<WarehouseGrid> list = list(Wrappers.<WarehouseGrid>lambdaQuery().eq(WarehouseGrid::getStationId, stationId)); |
| | | /* |