📄 bunny.java
字号:
//$Id: Bunny.java 14761 2008-06-11 13:51:06Z hardy.ferentschik $package org.hibernate.test.annotations.id.entities;import java.io.Serializable;import java.math.BigInteger;import java.util.Set;import javax.persistence.Column;import javax.persistence.CascadeType;import javax.persistence.Entity;import javax.persistence.GeneratedValue;import javax.persistence.GenerationType;import javax.persistence.Id;import javax.persistence.OneToMany;import org.hibernate.annotations.GenericGenerator;/** * Blown precision on related entity when @JoinColumn is used. * * @see ANN-748 * @author Andrew C. Oliver andyspam@osintegrators.com */@Entity@SuppressWarnings("serial")public class Bunny implements Serializable { @Id @GeneratedValue(strategy = GenerationType.IDENTITY, generator = "java5_uuid") @GenericGenerator(name = "java5_uuid", strategy = "org.hibernate.test.annotations.id.UUIDGenerator") @Column(name = "id", precision = 128, scale = 0) private BigInteger id; @OneToMany(mappedBy = "bunny", cascade = { CascadeType.PERSIST }) Set<PointyTooth> teeth; @OneToMany(mappedBy = "bunny", cascade = { CascadeType.PERSIST }) Set<TwinkleToes> toes; public void setTeeth(Set<PointyTooth> teeth) { this.teeth = teeth; } public BigInteger getId() { return id; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -