📄 tbreckoninginfo.java
字号:
package com.mwq.hibernate.mapping;
public class TbReckoningInfo implements java.io.Serializable {
// Fields
private Integer id;
private TbReckoning tbReckoning;
private TbAccountItem tbAccountItem;
private Integer money;
// Constructors
public TbReckoningInfo() {
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public TbReckoning getTbReckoning() {
return this.tbReckoning;
}
public void setTbReckoning(TbReckoning tbReckoning) {
this.tbReckoning = tbReckoning;
}
public TbAccountItem getTbAccountItem() {
return this.tbAccountItem;
}
public void setTbAccountItem(TbAccountItem tbAccountItem) {
this.tbAccountItem = tbAccountItem;
}
public Integer getMoney() {
return this.money;
}
public void setMoney(Integer money) {
this.money = money;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -