📄 30604c15b90d001c1427d7c19e224211
字号:
package com.housesale.entity;
import java.io.Serializable;import org.apache.commons.lang.builder.ToStringBuilder;
/** @author Hibernate CodeGenerator */
public class Operator implements Serializable {
/** identifier field */
private Integer operatorId;
/** nullable persistent field */
private String operatorName;
/** nullable persistent field */
private Short password;
/** nullable persistent field */
private String tel;
/** nullable persistent field */
private String bz;
/** full constructor */
public Operator(Integer operatorId, String operatorName, Short password, String tel, String bz) {
this.operatorId = operatorId;
this.operatorName = operatorName;
this.password = password;
this.tel = tel;
this.bz = bz;
}
/** default constructor */
public Operator() {
}
/** minimal constructor */
public Operator(Integer operatorId) {
this.operatorId = operatorId;
}
/** * auto_increment * */
public Integer getOperatorId() {
return this.operatorId;
}
public void setOperatorId(Integer operatorId) {
this.operatorId = operatorId;
}
public String getOperatorName() {
return this.operatorName;
}
public void setOperatorName(String operatorName) {
this.operatorName = operatorName;
}
public Short getPassword() {
return this.password;
}
public void setPassword(Short password) {
this.password = password;
}
public String getTel() {
return this.tel;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getBz() {
return this.bz;
}
public void setBz(String bz) {
this.bz = bz;
}
public String toString() {
return new ToStringBuilder(this)
.append("operatorId", getOperatorId())
.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -