📄 abstractconsumething.java.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 + -