abstractconsumething.java.svn-base
来自「在线书库系统 查看图书 编写文章 管理员管理」· SVN-BASE 代码 · 共 46 行
SVN-BASE
46 行
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 + =
减小字号Ctrl + -
显示快捷键?