We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e75671 commit 94a0d55Copy full SHA for 94a0d55
APIJSONORM/src/main/java/apijson/orm/Join.java
@@ -105,12 +105,12 @@ public void setOuterConfig(SQLConfig outerConfig) {
105
this.outerConfig = outerConfig;
106
}
107
108
- public boolean isOne2One() {
109
- return ! isOne2Many();
110
- }
111
- public boolean isOne2Many() {
112
- return count != 1 || (path != null && path.contains("[]")); // TODO 必须保证一对一时不会传包含 [] 的 path
113
+ public boolean isOne2One() {
+ return ! isOne2Many();
+ }
+ public boolean isOne2Many() {
+ return count != 1 || (path != null && path.contains("[]")); // TODO 必须保证一对一时不会传包含 [] 的 path
114
115
public boolean isAppJoin() {
116
return "@".equals(getJoinType());
0 commit comments