📄 item.java
字号:
//$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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -