/**
* Get the set of cherry pick assay plates.
* @return the set of cherry pick assay plates
*/
@OneToMany(
mappedBy="cherryPickRequest",
cascade = { CascadeType.ALL },
fetch=FetchType.LAZY
)
@org.hibernate.annotations.Sort(type=org.hibernate.annotations.SortType.NATURAL)
@org.hibernate.annotations.Cascade(value={
org.hibernate.annotations.CascadeType.SAVE_UPDATE,
org.hibernate.annotations.CascadeType.DELETE
})
public SortedSet<CherryPickAssayPlate> getCherryPickAssayPlates()
{
return _cherryPickAssayPlates;
}
CherryPickRequest.java 文件源码
java
阅读 36
收藏 0
点赞 0
评论 0
项目:screensaver
作者:
评论列表
文章目录