detailvo.java

来自「一个管理系统 用java作的」· Java 代码 · 共 173 行

JAVA
173
字号
/*
 *  僔僗僥儉丂丂丗 嶳廏HR僔僗僥儉奐敪
 *  僒僽僔僗僥儉丗 WEB僔僗僥儉
 *
 *   VER    丂曄峏擔     丂晹壽      扴摉幰  丂曄峏撪梕
 *  -----------------------------------------------------------------
 *  V1.00 丂丂${date} (ShanXiu丂Soft)  Tuwenjie   弶斉
 *
 *       (C) Copyright SHANXIU CORPORATION 2006
 *                     All Rights Reserved.
 *
 */


package net.shanxiu.HR.vo;

import java.io.Serializable;




/**
 * DetailVo
 */
public class DetailVo implements Serializable {
    
    private String name;
    private String id;
    private String birth_year;
    private String birth_month;
    private String birth_day;
    private String sex;
    private String grade;
    private String born_in;
    private String polity;
    private String telephone;
    private String dep_name;

  
    /**
     * @return Returns the birth_day.
     */
    public String getBirth_day() {
        return birth_day;
    }
    /**
     * @param birth_day The birth_day to set.
     */
    public void setBirth_day(String birth_day) {
        this.birth_day = birth_day;
    }
    /**
     * @return Returns the birth_month.
     */
    public String getBirth_month() {
        return birth_month;
    }
    /**
     * @param birth_month The birth_month to set.
     */
    public void setBirth_month(String birth_month) {
        this.birth_month = birth_month;
    }
    /**
     * @return Returns the birth_year.
     */
    public String getBirth_year() {
        return birth_year;
    }
    /**
     * @param birth_year The birth_year to set.
     */
    public void setBirth_year(String birth_year) {
        this.birth_year = birth_year;
    }
    /**
     * @return Returns the born_in.
     */
    public String getBorn_in() {
        return born_in;
    }
    /**
     * @param born_in The born_in to set.
     */
    public void setBorn_in(String born_in) {
        this.born_in = born_in;
    }
    /**
     * @return Returns the dep_name.
     */
    public String getDep_name() {
        return dep_name;
    }
    /**
     * @param dep_name The dep_name to set.
     */
    public void setDep_name(String dep_name) {
        this.dep_name = dep_name;
    }
    /**
     * @return Returns the grade.
     */
    public String getGrade() {
        return grade;
    }
    /**
     * @param grade The grade to set.
     */
    public void setGrade(String grade) {
        this.grade = grade;
    }
    /**
     * @return Returns the id.
     */
    public String getId() {
        return id;
    }
    /**
     * @param id The id to set.
     */
    public void setId(String id) {
        this.id = id;
    }
    /**
     * @return Returns the name.
     */
    public String getName() {
        return name;
    }
    /**
     * @param name The name to set.
     */
    public void setName(String name) {
        this.name = name;
    }
    /**
     * @return Returns the polity.
     */
    public String getPolity() {
        return polity;
    }
    /**
     * @param polity The polity to set.
     */
    public void setPolity(String polity) {
        this.polity = polity;
    }
    /**
     * @return Returns the sex.
     */
    public String getSex() {
        return sex;
    }
    /**
     * @param sex The sex to set.
     */
    public void setSex(String sex) {
        this.sex = sex;
    }
    /**
     * @return Returns the telephone.
     */
    public String getTelephone() {
        return telephone;
    }
    /**
     * @param telephone The telephone to set.
     */
    public void setTelephone(String telephone) {
        this.telephone = telephone;
    }
}

⌨️ 快捷键说明

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