fix 修复 代码生成 错误匹配表名问题

2.X
疯狂的狮子Li 2024-07-31 13:03:03 +08:00
parent 8d874ba759
commit 9d512e87ba
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ public class GenTableServiceImpl implements IGenTableService {
if (CollUtil.isEmpty(tableNames)) {
return true;
}
return !StringUtils.containsAnyIgnoreCase(x.getName(), tableArrays);
return !StringUtils.equalsAnyIgnoreCase(x.getName(), tableArrays);
})
.filter(x -> {
boolean nameMatches = true;