experiencebean.java~3~

来自「java+sql2000企业人力管理系统」· JAVA~3~ 代码 · 共 84 行

JAVA~3~
84
字号
package managersystem.Emp;

//编辑学习工作与工作经历管理
public class ExperienceBean {
    private int id;
    private int emp_Id; //员工编号
    private String start_Date; //开始日期
    private String end_Date; //截止日期
    private String school_Org; //学校/单位
    private String title; //职务

    public ExperienceBean(int id, int emp_Id, String start_Date,
                          String end_Date, String school_Org, String title) {
        this.id = id;
        this.emp_Id = emp_Id;
        this.start_Date = start_Date;
        this.end_Date = end_Date;
        this.school_Org = school_Org;
        this.title = title;
    }
    public ExperienceBean(int id, String start_Date,
                          String end_Date, String school_Org, String title) {
        this.id = id;

        this.start_Date = start_Date;
        this.end_Date = end_Date;
        this.school_Org = school_Org;
        this.title = title;


    public ExperienceBean(int id) {
        this.id = id;
    }


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

    public void setEmp_Id(int emp_Id) {
        this.emp_Id = emp_Id;
    }

    public void setStart_Date(String start_Date) {
        this.start_Date = start_Date;
    }

    public void setEnd_Date(String end_Date) {
        this.end_Date = end_Date;
    }

    public void setSchool_Org(String school_Org) {
        this.school_Org = school_Org;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public int getId() {
        return id;
    }

    public int getEmp_Id() {
        return emp_Id;
    }

    public String getStart_Date() {
        return start_Date;
    }

    public String getEnd_Date() {
        return end_Date;
    }

    public String getSchool_Org() {
        return school_Org;
    }

    public String getTitle() {
        return title;
    }
}

⌨️ 快捷键说明

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