📄 clothing.java
字号:
//$Id: Clothing.java 11282 2007-03-14 22:05:59Z epbernard $package org.hibernate.test.annotations.inheritance.joined;import javax.persistence.Entity;import javax.persistence.GeneratedValue;import javax.persistence.Id;import javax.persistence.Inheritance;import javax.persistence.InheritanceType;/** * @author Emmanuel Bernard */@Entity@Inheritance(strategy = InheritanceType.JOINED)public abstract class Clothing { private long id; private int size; private String color; @Id @GeneratedValue public long getId() { return id; } public void setId(long id) { this.id = id; } public int getSize() { return size; } public void setSize(int size) { this.size = size; } public String getColor() { return color; } public void setColor(String color) { this.color = color; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -