fix 修复 代码生成 错误匹配表名问题
parent
8d874ba759
commit
9d512e87ba
|
|
@ -143,7 +143,7 @@ public class GenTableServiceImpl implements IGenTableService {
|
||||||
if (CollUtil.isEmpty(tableNames)) {
|
if (CollUtil.isEmpty(tableNames)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return !StringUtils.containsAnyIgnoreCase(x.getName(), tableArrays);
|
return !StringUtils.equalsAnyIgnoreCase(x.getName(), tableArrays);
|
||||||
})
|
})
|
||||||
.filter(x -> {
|
.filter(x -> {
|
||||||
boolean nameMatches = true;
|
boolean nameMatches = true;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue