src/main/java/org/jeecg/modules/andon/service/impl/AndonResponseConfigServiceImpl.java
@@ -55,7 +55,7 @@ @Override public String getProductionLineIdByButtonId(String buttonId) { QueryWrapper<AndonResponseConfig> queryWrapper = new QueryWrapper<>(); queryWrapper.eq("button_id", buttonId); queryWrapper.eq("button_id", buttonId); // 确保这里使用的是数据库字段名 AndonResponseConfig config = this.getOne(queryWrapper); return config != null ? config.getFactoryId() : null; }