emplyee.java
来自「个人办公平台,用JAVA开发的TOMCAT的服务器」· Java 代码 · 共 62 行
JAVA
62 行
package com.skyhawk.user;
public class Emplyee {
private int empid;
private int depid;
private int dirid;
private String empname;
private boolean deleter;
private int purview;
public void setempId(int id)
{
this.empid=id;
}
public void setdepId(int id)
{
this.depid=id;
}
public void setdirId(int id)
{
this.dirid=id;
}
public void setempName(String name)
{
this.empname=name;
}
public void setdeleter(boolean n)
{
this.deleter=n;
}
public void setpurview(int i)
{
this.purview=i;
}
public int getempId()
{
return empid;
}
public int getdepId()
{
return depid;
}
public String getempName()
{
return empname;
}
public boolean getdeleter()
{
return deleter;
}
public int getpurview()
{
return purview;
}
public static void main(String[] args) {
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?