📄 generationuser.java
字号:
//$Id: $
package org.hibernate.test.annotations.indexcoll;
import java.util.Map;
import java.util.HashMap;
import javax.persistence.OneToMany;
import javax.persistence.Id;
import javax.persistence.Entity;
import javax.persistence.MapKey;
import javax.persistence.GeneratedValue;
/**
* @author Emmanuel Bernard
*/
@Entity
public class GenerationUser {
@Id
@GeneratedValue
private int id;
@OneToMany
@MapKey(name="generation")
private Map<Generation, GenerationGroup> ref = new HashMap<Generation, GenerationGroup>();
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public Map<Generation, GenerationGroup> getRef() {
return ref;
}
public void setRef(Map<Generation, GenerationGroup> ref) {
this.ref = ref;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -