📄 abstractconsumelog.java.svn-base
字号:
package StoryManage.Dal;
import java.util.Date;
/**
* AbstractConsumeLog entity provides the base persistence definition of the
* ConsumeLog entity.
*
* @author MyEclipse Persistence Tools
*/
public abstract class AbstractConsumeLog implements java.io.Serializable {
// Fields
private Integer consumeLogId;
private Integer userId;
private Integer spendMoney;
private Integer consumeThingId;
private Date consumeTime;
// Constructors
/** default constructor */
public AbstractConsumeLog() {
}
/** full constructor */
public AbstractConsumeLog(Integer userId, Integer spendMoney,
Integer consumeThingId, Date consumeTime) {
this.userId = userId;
this.spendMoney = spendMoney;
this.consumeThingId = consumeThingId;
this.consumeTime = consumeTime;
}
// Property accessors
public Integer getConsumeLogId() {
return this.consumeLogId;
}
public void setConsumeLogId(Integer consumeLogId) {
this.consumeLogId = consumeLogId;
}
public Integer getUserId() {
return this.userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public Integer getSpendMoney() {
return this.spendMoney;
}
public void setSpendMoney(Integer spendMoney) {
this.spendMoney = spendMoney;
}
public Integer getConsumeThingId() {
return this.consumeThingId;
}
public void setConsumeThingId(Integer consumeThingId) {
this.consumeThingId = consumeThingId;
}
public Date getConsumeTime() {
return this.consumeTime;
}
public void setConsumeTime(Date consumeTime) {
this.consumeTime = consumeTime;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -