📄 longproperty.java
字号:
package org.hibernate.test.annotations.any;import javax.persistence.Entity;import javax.persistence.GeneratedValue;import javax.persistence.Id;import javax.persistence.Table;@Entity@Table(name = "long_property")public class LongProperty implements Property { private Integer id; private String name; private Long value; public LongProperty() { super(); } public LongProperty(String name, Long value) { super(); this.name = name; this.value = value; } public String asString() { return Long.toString(value); } public String getName() { return name; } @Id @GeneratedValue public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Long getValue() { return value; } public void setValue(Long value) { this.value = value; } public void setName(String name) { this.name = name; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -