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

📄 userinfovo.java

📁 spring+hibernate+struts开发的校务oa系统
💻 JAVA
字号:
package com.yondor.oa.db.userinfo.dao;

import java.util.HashSet;
import java.util.Set;

public class UserinfoVO {


    // Fields    

     private Long userinfoid;
     private String firstname;
     private String lastname;
     private String sex;
     private Long age;
     private Long mobiletel;
     private Long telephone;
     private String address;
     private String duty;
     private Long hols;
     private Set operators = new HashSet(0);


    // Constructors

    /** default constructor */
    public UserinfoVO() {
    }

    
    /** full constructor */
    public UserinfoVO(String firstname, String lastname, String sex, Long age, Long mobiletel, Long telephone, String address, String duty, Long hols, Set operators) {
        this.firstname = firstname;
        this.lastname = lastname;
        this.sex = sex;
        this.age = age;
        this.mobiletel = mobiletel;
        this.telephone = telephone;
        this.address = address;
        this.duty = duty;
        this.hols = hols;
        this.operators = operators;
    }

   
    // Property accessors

    public Long getUserinfoid() {
        return this.userinfoid;
    }
    
    public void setUserinfoid(Long userinfoid) {
        this.userinfoid = userinfoid;
    }

    public String getFirstname() {
        return this.firstname;
    }
    
    public void setFirstname(String firstname) {
        this.firstname = firstname;
    }

    public String getLastname() {
        return this.lastname;
    }
    
    public void setLastname(String lastname) {
        this.lastname = lastname;
    }

    public String getSex() {
		return sex;
	}


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


	public Long getAge() {
        return this.age;
    }
    
    public void setAge(Long age) {
        this.age = age;
    }

    public Long getMobiletel() {
        return this.mobiletel;
    }
    
    public void setMobiletel(Long mobiletel) {
        this.mobiletel = mobiletel;
    }

    public Long getTelephone() {
        return this.telephone;
    }
    
    public void setTelephone(Long telephone) {
        this.telephone = telephone;
    }

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

    public String getDuty() {
        return this.duty;
    }
    
    public void setDuty(String duty) {
        this.duty = duty;
    }

    public Long getHols() {
        return this.hols;
    }
    
    public void setHols(Long hols) {
        this.hols = hols;
    }

    public Set getOperators() {
        return this.operators;
    }
    
    public void setOperators(Set operators) {
        this.operators = operators;
    }
   







}

⌨️ 快捷键说明

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