mirror of
https://gitee.com/dromara/RuoYi-Cloud-Plus.git
synced 2025-09-02 18:46:13 +00:00
fix 修复 代码生成 错误匹配表名问题
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user