📄 tbmanager.java
字号:
package com.mwq.hibernate.mapping;
public class TbManager implements java.io.Serializable {
// Fields
private Integer id;
private TbRecord tbRecord;
private String password;
private String purview;
private String state;
// Constructors
public TbManager() {
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public TbRecord getTbRecord() {
return this.tbRecord;
}
public void setTbRecord(TbRecord tbRecord) {
this.tbRecord = tbRecord;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
}
public String getPurview() {
return purview;
}
public void setPurview(String purview) {
this.purview = purview;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -