fix 修复 代码生成 错误匹配表名问题
This commit is contained in:
parent
fcf8516f0d
commit
5aa346327f
@ -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…
x
Reference in New Issue
Block a user