fix 修复 代码生成 表名中间带有特殊字符被过滤问题 改为开头过滤
This commit is contained in:
parent
eda67dd572
commit
eed929b9fe
@ -202,7 +202,7 @@ public class GenTableServiceImpl implements IGenTableService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
List<Table<?>> tableList = tablesMap.values().stream()
|
List<Table<?>> tableList = tablesMap.values().stream()
|
||||||
.filter(x -> !StringUtils.containsAnyIgnoreCase(x.getName(), TABLE_IGNORE))
|
.filter(x -> !startWithAnyIgnoreCase(x.getName(), TABLE_IGNORE))
|
||||||
.filter(x -> tableNameSet.contains(x.getName())).toList();
|
.filter(x -> tableNameSet.contains(x.getName())).toList();
|
||||||
|
|
||||||
if (CollUtil.isEmpty(tableList)) {
|
if (CollUtil.isEmpty(tableList)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user