integerproperty.java

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

JAVA
57
字号
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="int_property")public class IntegerProperty implements Property {	private Integer id;	private String name;	private Integer value;		public IntegerProperty() {		super();	}	public IntegerProperty(String name, Integer value) {		super();		this.name = name;		this.value = value;	}	public String asString() {		return Integer.toString(value);	}	public String getName() {		return name;	}	@Id	@GeneratedValue	public Integer getId() {		return id;	}	public void setId(Integer id) {		this.id = id;	}	public Integer getValue() {		return value;	}	public void setValue(Integer value) {		this.value = value;	}	public void setName(String name) {		this.name = name;	}	}

⌨️ 快捷键说明

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