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

📄 departmentuser.java

📁 jsf在线考试系统的实例
💻 JAVA
字号:
package com.jlobo.web.beans;
// default package

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

public class DepartmentUser  implements java.io.Serializable {
	private DepartmentUserId id;
	private String name;
    private String localName;
    private String describe;
    private Long sort;
    private Integer status;
    private Long parent;

    // Constructors

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

    
    /** full constructor */
    public DepartmentUser(DepartmentUserId id,String name,String localName,String describe,Long sort,Integer status,Long parent) {
        this.id = id;
        this.name = name;
        this.localName = localName;
        this.describe = describe;
        this.sort = sort;
        this.status = status;
        this.parent = parent;
    }
    // Property accessors

    public DepartmentUserId getId() {
        return this.id;
    }
    
    public void setId(DepartmentUserId id) {
        this.id = id;
    }


	public String getDescribe() {
		return describe;
	}


	public void setDescribe(String describe) {
		this.describe = describe;
	}


	public Integer getStatus() {
		return status;
	}


	public void setStatus(Integer status) {
		this.status = status;
	}


	public String getLocalName() {
		return localName;
	}


	public void setLocalName(String localName) {
		this.localName = localName;
	}


	public String getName() {
		return name;
	}


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


	public Long getParent() {
		return parent;
	}


	public void setParent(Long parent) {
		this.parent = parent;
	}


	public Long getSort() {
		return sort;
	}


	public void setSort(Long sort) {
		this.sort = sort;
	}
}

⌨️ 快捷键说明

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