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 90cf124 commit d17b3fbCopy full SHA for d17b3fb
src/main/java/org/apache/ibatis/mapping/ResultMapping.java
@@ -262,10 +262,20 @@ public String getForeignColumn() {
262
return foreignColumn;
263
}
264
265
+ @Deprecated
266
+ public void setForeignColumn(String foreignColumn) {
267
+ this.foreignColumn = foreignColumn;
268
+ }
269
+
270
public boolean isLazy() {
271
return lazy;
272
273
274
275
+ public void setLazy(boolean lazy) {
276
+ this.lazy = lazy;
277
278
279
public boolean isSimple() {
280
return this.nestedResultMapId == null && this.nestedQueryId == null && this.resultSet == null;
281
0 commit comments