generationuser.java

来自「hibernate3.2.6源码和jar包」· Java 代码 · 共 44 行

JAVA
44
字号
//$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 + =
减小字号Ctrl + -
显示快捷键?