tbreckoninginfo.java
来自「根据企业对人事管理的要求」· Java 代码 · 共 54 行
JAVA
54 行
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 + =
减小字号Ctrl + -
显示快捷键?