yangys
2024-05-18 040976de6f9934b99f30268a28e2ecf42260e217
smart-man-boot/src/main/java/com/qianwen/smartman/modules/cps/service/impl/WarehouseGridServiceImpl.java
@@ -19,7 +19,6 @@
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;
@@ -27,7 +26,7 @@
        this.warehouseStationService = warehouseStationService;
    }
    @Override // org.springblade.modules.cps.service.IWarehouseGridService
    public WarehouseGridVO create(WarehouseGridCreateVO warehouseGridCreateVO) {
        WarehouseGrid warehouseGrid = WarehouseGridConvert.INSTANCE.convert(warehouseGridCreateVO);
        checkWarehouseGrid(warehouseGrid);
@@ -35,7 +34,7 @@
        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);
@@ -48,7 +47,7 @@
        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));
       /*