abstractdtproperties.java

来自「这是我自己做的一个选课系统」· Java 代码 · 共 92 行

JAVA
92
字号
package org.hibernate.beans;

/**
 * AbstractDtproperties entity provides the base persistence definition of the
 * Dtproperties entity. @author MyEclipse Persistence Tools
 */

public abstract class AbstractDtproperties implements java.io.Serializable {

	// Fields

	private DtpropertiesId id;
	private Integer objectid;
	private String value;
	private String uvalue;
	private String lvalue;
	private Integer version;

	// Constructors

	/** default constructor */
	public AbstractDtproperties() {
	}

	/** minimal constructor */
	public AbstractDtproperties(DtpropertiesId id, Integer version) {
		this.id = id;
		this.version = version;
	}

	/** full constructor */
	public AbstractDtproperties(DtpropertiesId id, Integer objectid,
			String value, String uvalue, String lvalue, Integer version) {
		this.id = id;
		this.objectid = objectid;
		this.value = value;
		this.uvalue = uvalue;
		this.lvalue = lvalue;
		this.version = version;
	}

	// Property accessors

	public DtpropertiesId getId() {
		return this.id;
	}

	public void setId(DtpropertiesId id) {
		this.id = id;
	}

	public Integer getObjectid() {
		return this.objectid;
	}

	public void setObjectid(Integer objectid) {
		this.objectid = objectid;
	}

	public String getValue() {
		return this.value;
	}

	public void setValue(String value) {
		this.value = value;
	}

	public String getUvalue() {
		return this.uvalue;
	}

	public void setUvalue(String uvalue) {
		this.uvalue = uvalue;
	}

	public String getLvalue() {
		return this.lvalue;
	}

	public void setLvalue(String lvalue) {
		this.lvalue = lvalue;
	}

	public Integer getVersion() {
		return this.version;
	}

	public void setVersion(Integer version) {
		this.version = version;
	}

}

⌨️ 快捷键说明

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