dtproperties.java

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

JAVA
27
字号
package org.hibernate.beans;

/**
 * Dtproperties entity. @author MyEclipse Persistence Tools
 */
public class Dtproperties extends AbstractDtproperties implements
		java.io.Serializable {

	// Constructors

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

	/** minimal constructor */
	public Dtproperties(DtpropertiesId id, Integer version) {
		super(id, version);
	}

	/** full constructor */
	public Dtproperties(DtpropertiesId id, Integer objectid, String value,
			String uvalue, String lvalue, Integer version) {
		super(id, objectid, value, uvalue, lvalue, version);
	}

}

⌨️ 快捷键说明

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