mirror of
https://gitee.com/best_handsome/mybatis-plus-join
synced 2025-07-11 00:02:22 +08:00
注释
This commit is contained in:
parent
83585c075f
commit
b45094d1ea
@ -33,7 +33,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "mybatis-plus-join.join-prefix",
|
"name": "mybatis-plus-join.join-prefix",
|
||||||
"defaultValue": "t",
|
"defaultValue": "join",
|
||||||
"type": "java.lang.String",
|
"type": "java.lang.String",
|
||||||
"description": "重复字段前缀."
|
"description": "重复字段前缀."
|
||||||
}
|
}
|
||||||
|
@ -481,8 +481,8 @@ class LambdaWrapperTest {
|
|||||||
.leftJoin(AddressDO.class, AddressDO::getId, UserDO::getAddressId2);
|
.leftJoin(AddressDO.class, AddressDO::getId, UserDO::getAddressId2);
|
||||||
List<UserDO> list = userMapper.selectJoinList(UserDO.class, wrapper);
|
List<UserDO> list = userMapper.selectJoinList(UserDO.class, wrapper);
|
||||||
|
|
||||||
assert list.get(0).getAddressList().get(0).getAddress()!= null;
|
assert list.get(0).getAddressList().get(0).getAddress() != null;
|
||||||
assert list.get(0).getAddressList2().get(0).getAddress()!= null;
|
assert list.get(0).getAddressList2().get(0).getAddress() != null;
|
||||||
System.out.println(list);
|
System.out.println(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user