?? 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 + -