wangfei
2025-11-12 ae1459d90f53ac81177e75790d859c6a12e7ed54
hangzhoumesParent/common/servicebase/src/main/java/com/mes/order/service/impl/OrdersServiceImpl.java
@@ -68,9 +68,14 @@
    }
    @Override
    @Cacheable(value = "orderDetails", key = "#flowCardId",unless = "#result == null")
    @Cacheable(value = "orderDetails", key = "#flowCardId", unless = "#result == null")
    public OrderDetailsDTO queryProductNameByFlowCardId(String flowCardId) {
        log.info("查询数据库一次:{}", flowCardId);
        return baseMapper.queryProductNameByFlowCardId(flowCardId);
    }
    @Override
    public List<ProcessCardReport> queryLackByERP(String flowCardId) {
        return baseMapper.queryLackByERP(flowCardId);
    }
}