deptvo.java
来自「Java协同办公系统。实现公司内部的人事」· Java 代码 · 共 48 行
JAVA
48 行
package com.icss.oa.bean;
public class DeptVO {
private int deptNO;
private String DeptName;
private String DeptFunction;
private String deptMail;
private String deptTel;
private int deptManagerId;
public String getDeptFunction() {
return DeptFunction;
}
public void setDeptFunction(String deptFunction) {
DeptFunction = deptFunction;
}
public String getDeptMail() {
return deptMail;
}
public void setDeptMail(String deptMail) {
this.deptMail = deptMail;
}
public int getDeptManagerId() {
return deptManagerId;
}
public void setDeptManagerId(int deptManagerId) {
this.deptManagerId = deptManagerId;
}
public String getDeptName() {
return DeptName;
}
public void setDeptName(String deptName) {
DeptName = deptName;
}
public int getDeptNO() {
return deptNO;
}
public void setDeptNO(int deptNO) {
this.deptNO = deptNO;
}
public String getDeptTel() {
return deptTel;
}
public void setDeptTel(String deptTel) {
this.deptTel = deptTel;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?