java类javax.persistence.FetchType的实例源码

WhitelistInfo.java 文件源码 项目:lemon 阅读 30 收藏 0 点赞 0 评论 0
/** @return null. */
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "SERVICE_ID")
public WhitelistService getWhitelistService() {
    return this.whitelistService;
}
WhitelistApp.java 文件源码 项目:lemon 阅读 29 收藏 0 点赞 0 评论 0
/** @return . */
@OneToMany(fetch = FetchType.LAZY, mappedBy = "whitelistApp")
public Set<WhitelistHost> getWhitelistHosts() {
    return this.whitelistHosts;
}
AccountCredential.java 文件源码 项目:lemon 阅读 19 收藏 0 点赞 0 评论 0
/** @return . */
@OneToMany(fetch = FetchType.LAZY, mappedBy = "accountCredential")
public Set<AccountHistoryCredential> getAccountHistoryCredentials() {
    return this.accountHistoryCredentials;
}
Role.java 文件源码 项目:hibernateMaster 阅读 33 收藏 0 点赞 0 评论 0
@ManyToMany(fetch=FetchType.LAZY)
public Set<Power> getPowerSet() {
    return powerSet;
}
DiskShare.java 文件源码 项目:lemon 阅读 35 收藏 0 点赞 0 评论 0
/** @return null. */
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "INFO_ID")
public DiskInfo getDiskInfo() {
    return this.diskInfo;
}
User.java 文件源码 项目:hibernateMaster 阅读 26 收藏 0 点赞 0 评论 0
@ManyToMany(fetch=FetchType.LAZY)
public Set<Role> getRoleSet() {
    return roleSet;
}
TaskDefDeadline.java 文件源码 项目:lemon 阅读 25 收藏 0 点赞 0 评论 0
/** @return 外键,任务定义. */
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "BASE_ID")
public TaskDefBase getTaskDefBase() {
    return this.taskDefBase;
}
BpmTaskDef.java 文件源码 项目:lemon 阅读 32 收藏 0 点赞 0 评论 0
/** @return null. */
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "PROCESS_ID")
public BpmProcess getBpmProcess() {
    return this.bpmProcess;
}
SendmailTemplate.java 文件源码 项目:lemon 阅读 24 收藏 0 点赞 0 评论 0
/** @return . */
@OneToMany(fetch = FetchType.LAZY, mappedBy = "sendmailTemplate")
public Set<SendmailQueue> getSendmailQueues() {
    return this.sendmailQueues;
}
DictType.java 文件源码 项目:lemon 阅读 32 收藏 0 点赞 0 评论 0
/** @return . */
@OneToMany(fetch = FetchType.LAZY, mappedBy = "dictType")
public Set<DictSchema> getDictSchemas() {
    return this.dictSchemas;
}


问题


面经


文章

微信
公众号

扫码关注公众号