📄 abstractzhangshan.java
字号:
package com.baidu.hibernate.pojo;
import java.util.HashSet;
import java.util.Set;
/**
* AbstractZhangshan generated by MyEclipse - Hibernate Tools
*/
public abstract class AbstractZhangshan implements java.io.Serializable {
// Fields
private Short fldDeptId;
private String fldDeptType;
private String fldDeptName;
private String fldDeptDrop;
private Short fldDeptParent;
private String fldDeptPhone;
private String fldDeptAddress;
private String fldDeptMemo;
private Short fldDeptIndex;
private Set staffs = new HashSet(0);
// Constructors
/** default constructor */
public AbstractZhangshan() {
}
/** minimal constructor */
public AbstractZhangshan(String fldDeptType, String fldDeptName, String fldDeptDrop, Short fldDeptParent) {
this.fldDeptType = fldDeptType;
this.fldDeptName = fldDeptName;
this.fldDeptDrop = fldDeptDrop;
this.fldDeptParent = fldDeptParent;
}
/** full constructor */
public AbstractZhangshan(String fldDeptType, String fldDeptName, String fldDeptDrop, Short fldDeptParent, String fldDeptPhone, String fldDeptAddress, String fldDeptMemo, Short fldDeptIndex, Set staffs) {
this.fldDeptType = fldDeptType;
this.fldDeptName = fldDeptName;
this.fldDeptDrop = fldDeptDrop;
this.fldDeptParent = fldDeptParent;
this.fldDeptPhone = fldDeptPhone;
this.fldDeptAddress = fldDeptAddress;
this.fldDeptMemo = fldDeptMemo;
this.fldDeptIndex = fldDeptIndex;
this.staffs = staffs;
}
// Property accessors
public Short getFldDeptId() {
return this.fldDeptId;
}
public void setFldDeptId(Short fldDeptId) {
this.fldDeptId = fldDeptId;
}
public String getFldDeptType() {
return this.fldDeptType;
}
public void setFldDeptType(String fldDeptType) {
this.fldDeptType = fldDeptType;
}
public String getFldDeptName() {
return this.fldDeptName;
}
public void setFldDeptName(String fldDeptName) {
this.fldDeptName = fldDeptName;
}
public String getFldDeptDrop() {
return this.fldDeptDrop;
}
public void setFldDeptDrop(String fldDeptDrop) {
this.fldDeptDrop = fldDeptDrop;
}
public Short getFldDeptParent() {
return this.fldDeptParent;
}
public void setFldDeptParent(Short fldDeptParent) {
this.fldDeptParent = fldDeptParent;
}
public String getFldDeptPhone() {
return this.fldDeptPhone;
}
public void setFldDeptPhone(String fldDeptPhone) {
this.fldDeptPhone = fldDeptPhone;
}
public String getFldDeptAddress() {
return this.fldDeptAddress;
}
public void setFldDeptAddress(String fldDeptAddress) {
this.fldDeptAddress = fldDeptAddress;
}
public String getFldDeptMemo() {
return this.fldDeptMemo;
}
public void setFldDeptMemo(String fldDeptMemo) {
this.fldDeptMemo = fldDeptMemo;
}
public Short getFldDeptIndex() {
return this.fldDeptIndex;
}
public void setFldDeptIndex(Short fldDeptIndex) {
this.fldDeptIndex = fldDeptIndex;
}
public Set getStaffs() {
return this.staffs;
}
public void setStaffs(Set staffs) {
this.staffs = staffs;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -