【修改】试卷任务白名单

This commit is contained in:
huababa1
2025-10-20 06:22:20 +08:00
parent 981fb9b466
commit 3889ce1414
16 changed files with 215 additions and 11 deletions

View File

@@ -118,7 +118,7 @@ public class CellIng {
String formula = cell.getCellFormula();
// 转为小写再比较
if (formula.toLowerCase().contains(keyWords.toLowerCase())) {
return formula; // 包含关键字时返回公式内容
return keyWords; // 包含关键字时返回公式内容
} else {
return ""; // 不包含关键字
}