⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 staff_obj_m.java

📁 javaGUI编写的人事管理系统(毕业学生答辩可参考)
💻 JAVA
字号:
package project;

/**
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2007</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public class Staff_obj_M {
  private int id;
  private String name;
  private String birth;
  private int sex;
  private int dep;
  private int position;
  private String telephone;
  private String address;
  private String hiredate;
  private String contract;
  private int salary;
  private String education;

  public Staff_obj_M() {
  }

  public void setId(int id) {
    this.id = id;
  }

  public void setName(String name) {
    this.name = name;
  }

  public void setBirth(String birth) {
    this.birth = birth;
  }

  public void setSex(int sex) {
    this.sex = sex;
  }

  public void setDep(int dep) {
    this.dep = dep;
  }

  public void setPosition(int position) {
    this.position = position;
  }

  public void setTelephone(String telephone) {
    this.telephone = telephone;
  }

  public void setAddress(String address) {
    this.address = address;
  }

  public void setHiredate(String hiredate) {
    this.hiredate = hiredate;
  }

  public void setContract(String contract) {
    this.contract = contract;
  }

  public void setSalary(int salary) {
    this.salary = salary;
  }

  public void setEducation(String education) {
    this.education = education;
  }

  public int getId() {
    return id;
  }

  public String getName() {
    return name;
  }

  public String getBirth() {
    return birth;
  }

  public int getSex() {
    return sex;
  }

  public int getDep() {
    return dep;
  }

  public int getPosition() {
    return position;
  }

  public String getTelephone() {
    return telephone;
  }

  public String getAddress() {
    return address;
  }

  public String getHiredate() {
    return hiredate;
  }

  public String getContract() {
    return contract;
  }

  public int getSalary() {
    return salary;
  }

  public String getEducation() {
    return education;
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -