This commit is contained in:
王帅 2024-10-03 19:41:48 +08:00
parent 913fea7c28
commit 1347c49cdf

View File

@ -96,11 +96,8 @@ public class QueryTable implements CloneSupport<QueryTable> {
if (this == table) { if (this == table) {
return true; return true;
} }
if (StringUtil.isNotBlank(alias) return Objects.equals(name, table.name)
&& StringUtil.isNotBlank(table.alias)) { && Objects.equals(alias, table.alias);
return Objects.equals(alias, table.alias);
}
return Objects.equals(name, table.name);
} }
Object[] getValueArray() { Object[] getValueArray() {