/**
* @return User's education
*/
@ManyToOne(fetch = FetchType.LAZY)
@Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
@JoinColumn(name = "education_id", nullable = true)
@ForeignKey(name="fk_user_education_id")
public Education getEducation() {
return this.education;
}
User.java 文件源码
java
阅读 40
收藏 0
点赞 0
评论 0
项目:Project-H-Backend
作者:
评论列表
文章目录