⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abstractconsumething.java.svn-base

📁 在线书库系统 查看图书 编写文章 管理员管理
💻 SVN-BASE
字号:
package StoryManage.Dal;

/**
 * AbstractConsumeThing entity provides the base persistence definition of the
 * ConsumeThing entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public abstract class AbstractConsumeThing implements java.io.Serializable {

	// Fields

	private Integer consumeThingId;
	private String thing;

	// Constructors

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

	/** full constructor */
	public AbstractConsumeThing(String thing) {
		this.thing = thing;
	}

	// Property accessors

	public Integer getConsumeThingId() {
		return this.consumeThingId;
	}

	public void setConsumeThingId(Integer consumeThingId) {
		this.consumeThingId = consumeThingId;
	}

	public String getThing() {
		return this.thing;
	}

	public void setThing(String thing) {
		this.thing = thing;
	}

}

⌨️ 快捷键说明

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