📄 tdept.java
字号:
package com.chinatelecom.mode;
import java.util.HashSet;
import java.util.Set;
/**
* TDept generated by MyEclipse Persistence Tools
*/
public class TDept implements java.io.Serializable {
// Fields
private Long deptId;
private TUser TUser;
private String deptName;
private String deptPhone;
private String deptMobile;
private String deptFax;
private String deptNote;
private String c;
private Set TPcrooms = new HashSet(0);
private Set TUsers = new HashSet(0);
// Constructors
/** default constructor */
public TDept() {
}
/** minimal constructor */
public TDept(String deptName) {
this.deptName = deptName;
}
/** full constructor */
public TDept(TUser TUser, String deptName, String deptPhone,
String deptMobile, String deptFax, String deptNote, Set TPcrooms,
Set TUsers) {
this.TUser = TUser;
this.deptName = deptName;
this.deptPhone = deptPhone;
this.deptMobile = deptMobile;
this.deptFax = deptFax;
this.deptNote = deptNote;
this.TPcrooms = TPcrooms;
this.TUsers = TUsers;
}
// Property accessors
public Long getDeptId() {
return this.deptId;
}
public void setDeptId(Long deptId) {
this.deptId = deptId;
}
public TUser getTUser() {
return this.TUser;
}
public void setTUser(TUser TUser) {
this.TUser = TUser;
}
public String getDeptName() {
return this.deptName;
}
public void setDeptName(String deptName) {
this.deptName = deptName;
}
public String getDeptPhone() {
return this.deptPhone;
}
public void setDeptPhone(String deptPhone) {
this.deptPhone = deptPhone;
}
public String getDeptMobile() {
return this.deptMobile;
}
public void setDeptMobile(String deptMobile) {
this.deptMobile = deptMobile;
}
public String getDeptFax() {
return this.deptFax;
}
public void setDeptFax(String deptFax) {
this.deptFax = deptFax;
}
public String getDeptNote() {
return this.deptNote;
}
public void setDeptNote(String deptNote) {
this.deptNote = deptNote;
}
public Set getTPcrooms() {
return this.TPcrooms;
}
public void setTPcrooms(Set TPcrooms) {
this.TPcrooms = TPcrooms;
}
public Set getTUsers() {
return this.TUsers;
}
public void setTUsers(Set TUsers) {
this.TUsers = TUsers;
}
public String getC() {
return c;
}
public void setC(String c) {
this.c = c;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -