为什么Mybatis中一对一注解开发的映射关系要这样写

图片说明

User类和Account类

public class User implements Serializable
{
    private Integer id;
    private String username;
    private String address;
    private String sex;
    private Date birthday;
        以及getset方法
}

public class Account
{
    private Integer ID;
    private Integer UID;
    private Integer MONEY;
    private User user;
        以及getset方法
}

mysql数据库中有和上面两个类相同的属性的表(除了数据库中的account没有user属性)

@Result(property = "user",column = "UID",one = @One(
                    select = "com.HSY.dao.IUSerDao.findById",
                    fetchType = FetchType.EAGER
            ))

这个代码中,property是user我能理解,后面的select可以获得User的信息,但是为什么column是UID,求求个位大佬讲解一下其中的流程

通过查到的uid再去用uid作为参数去查use这个类