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

This commit is contained in:
疯狂的狮子Li 2024-07-31 13:02:33 +08:00
parent fcf8516f0d
commit 5aa346327f

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;