?? tbreckoning.java
字號:
package com.mwq.hibernate.mapping;
import java.util.HashSet;
import java.util.Set;
public class TbReckoning implements java.io.Serializable {
// Fields
private Integer id;
private String name;
private String explain;
private Set tbReckoningInfos = new HashSet(0);
private Set tbReckoningLists = new HashSet(0);
// Constructors
public TbReckoning() {
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getExplain() {
return this.explain;
}
public void setExplain(String explain) {
this.explain = explain;
}
public Set getTbReckoningInfos() {
return this.tbReckoningInfos;
}
public void setTbReckoningInfos(Set tbReckoningInfos) {
this.tbReckoningInfos = tbReckoningInfos;
}
public Set getTbReckoningLists() {
return this.tbReckoningLists;
}
public void setTbReckoningLists(Set tbReckoningLists) {
this.tbReckoningLists = tbReckoningLists;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -