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

📄 dept.java

📁 车辆管理系统是OA系统中一部分。 单独使用。 提高车辆的有效管理
💻 JAVA
字号:
package org.langsin.car.vo;

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


/**
 * Dept generated by MyEclipse - Hibernate Tools
 */

@SuppressWarnings("serial")
public class Dept  implements java.io.Serializable {


    // Fields    

     private Integer deptid;
     private String deptname;
     private Set carapplies = new HashSet(0);
     private Set users = new HashSet(0);


    // Constructors

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

	/** minimal constructor */
    public Dept(String deptname) {
        this.deptname = deptname;
    }
    
    /** full constructor */
    public Dept(String deptname, Set carapplies, Set users) {
        this.deptname = deptname;
        this.carapplies = carapplies;
        this.users = users;
    }

   
    // Property accessors

    public Integer getDeptid() {
        return this.deptid;
    }
    
    public void setDeptid(Integer deptid) {
        this.deptid = deptid;
    }

    public String getDeptname() {
        return this.deptname;
    }
    
    public void setDeptname(String deptname) {
        this.deptname = deptname;
    }

    public Set getCarapplies() {
        return this.carapplies;
    }
    
    public void setCarapplies(Set carapplies) {
        this.carapplies = carapplies;
    }

    public Set getUsers() {
        return this.users;
    }
    
    public void setUsers(Set users) {
        this.users = users;
    }
   








}

⌨️ 快捷键说明

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