car.java
来自「Hibernate Annotations Sample」· Java 代码 · 共 40 行
JAVA
40 行
//$Id: Car.java 14736 2008-06-04 14:23:42Z hardy.ferentschik $
package org.hibernate.test.annotations.polymorphism;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import org.hibernate.annotations.PolymorphismType;
/**
* @author Emmanuel Bernard
*/
@Entity
@Inheritance(strategy= InheritanceType.TABLE_PER_CLASS)
@org.hibernate.annotations.Entity(polymorphism = PolymorphismType.EXPLICIT)
public class Car extends MovingThing {
private Integer id;
private String model;
public String getModel() {
return model;
}
public void setModel(String model) {
this.model = model;
}
@Id @GeneratedValue(strategy = GenerationType.TABLE )
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?