类org.hibernate.annotations.NotFoundAction源码实例Demo

下面列出了怎么用org.hibernate.annotations.NotFoundAction的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: jeecg   文件: InterroleInterfaceEntity.java
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "interface_id")

@NotFound(action=NotFoundAction.IGNORE)

public TSInterfaceEntity getInterfaceEntity() {
	return this.interfaceEntity;
}
 
源代码2 项目: jeecg   文件: TSDepartAuthgFunctionRelEntity.java
/**
 *方法: 取得java.lang.String
 *@return: java.lang.String  权限ID
 */
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "auth_id")

@NotFound(action=NotFoundAction.IGNORE)

public TSFunction getTsFunction() {
	return tsFunction;
}
 
源代码3 项目: youkefu   文件: ReportFilter.java
@ManyToOne(fetch = FetchType.EAGER)
   @JoinColumn(name="tableproperty")
@NotFound(action=NotFoundAction.IGNORE)
public TableProperties getTableproperty() {
	return tableproperty;
}
 
源代码4 项目: youkefu   文件: CubeLevel.java
@ManyToOne(fetch = FetchType.EAGER)
   @JoinColumn(name="tableproperty")
@NotFound(action=NotFoundAction.IGNORE)
public TableProperties getTableproperty() {
	return tableproperty;
}
 
 类所在包
 类方法
 同包方法