stringproperty.java

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

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

⌨️ 快捷键说明

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