item.java

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

JAVA
55
字号
//$Id: Item.java 11282 2007-03-14 22:05:59Z epbernard $package org.hibernate.test.annotations.generics;import javax.persistence.GeneratedValue;import javax.persistence.Id;import javax.persistence.ManyToOne;import javax.persistence.MappedSuperclass;/** * @author Emmanuel Bernard */@MappedSuperclasspublic class Item<Type, Owner> extends PricedStuff {	private Integer id;	private String name;	private Type type;	private Owner owner;	@Id	@GeneratedValue	public Integer getId() {		return id;	}	public void setId(Integer id) {		this.id = id;	}	public String getName() {		return name;	}	public void setName(String name) {		this.name = name;	}	@ManyToOne	public Type getType() {		return type;	}	public void setType(Type type) {		this.type = type;	}	@ManyToOne	public Owner getOwner() {		return owner;	}	public void setOwner(Owner owner) {		this.owner = owner;	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?