yangys
2024-05-19 9e5da8899bc21bb5b6b0a3c267108caa00199291
smart-man-boot/src/main/java/com/qianwen/smartman/modules/cps/service/impl/ProductionCraftProcessRelatedFixtureServiceImpl.java
@@ -18,7 +18,6 @@
import com.qianwen.smartman.modules.cps.vo.ProductionCraftProcessRelatedFixtureVO;
@Service
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/service/impl/ProductionCraftProcessRelatedFixtureServiceImpl.class */
public class ProductionCraftProcessRelatedFixtureServiceImpl extends ServiceImpl<ProductionCraftProcessRelatedFixtureMapper, ProductionCraftProcessRelatedFixture> implements IProductionCraftProcessRelatedFixtureService {
    private static final Logger log = LoggerFactory.getLogger(ProductionCraftProcessRelatedFixtureServiceImpl.class);
    private final ITrayFixtureService fixtureService;
@@ -27,7 +26,7 @@
        this.fixtureService = fixtureService;
    }
    @Override // org.springblade.modules.cps.service.IProductionCraftProcessRelatedFixtureService
    public Map<Long, List<ProductionCraftProcessRelatedFixture>> getMapBindFixture(List<Long> processIds) {
       return list(Wrappers.<ProductionCraftProcessRelatedFixture>lambdaQuery()
               .in(ProductionCraftProcessRelatedFixture::getVersionProcessId, processIds))
@@ -41,7 +40,7 @@
        }));*/
    }
    @Override // org.springblade.modules.cps.service.IProductionCraftProcessRelatedFixtureService
    public int getFixtureBindTray(List<Long> fixtureId) {
       return Math.toIntExact(this.fixtureService.count(Wrappers.<TrayFixture>lambdaQuery().in(TrayFixture::getFixId, fixtureId)));
       /*
@@ -50,7 +49,7 @@
        }, fixtureId)));*/
    }
    @Override // org.springblade.modules.cps.service.IProductionCraftProcessRelatedFixtureService
    public List<ProductionCraftProcessRelatedFixtureVO> getProductionCraftProcessRelatedFixtureListByProcessId(Long processId) {
        return this.baseMapper.getProductionCraftProcessRelatedFixtureListByProcessId(processId);
    }