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

📄 dept.java

📁 实现统一的人员日志管理系统管理后台
💻 JAVA
字号:
package com.tb.log.model.po;

import java.util.Set;

public class Dept {
	
	int dept_id = 0;
	int dept_code = 0;
	String dept_name ="";
	String supper_id ="";
	int dept_grade = 0;
	String creat_date ="";
	String dept_desc ="";
	String dept_state ="";
	Set users = null;
	
	
	public Dept(int dept_id,int dept_code,String dept_name,String supper_id,
			int dept_grade,String creat_date ,String dept_state,String dept_desc) {
		super();
		this.dept_id = dept_id;
		this.dept_code = dept_code;
		this.dept_name = dept_name;
		this.supper_id = supper_id;
		this.dept_grade = dept_grade;
		this.creat_date = creat_date;
		this.dept_state = dept_state;
		this.dept_desc = dept_desc;
	}
	public int getDept_id() {
		return dept_id;
	}
	public void setDept_id(int dept_id) {
		this.dept_id = dept_id;
	}
	public int getDept_code() {
		return dept_code;
	}
	public void setDept_code(int dept_code) {
		this.dept_code = dept_code;
	}
	public String getDept_name() {
		return dept_name;
	}
	public void setDept_name(String dept_name) {
		this.dept_name = dept_name;
	}
	public String getSupper_id() {
		return supper_id;
	}
	public void setSupper_id(String supper_id) {
		this.supper_id = supper_id;
	}
	public int getDept_grade() {
		return dept_grade;
	}
	public void setDept_grade(int dept_grade) {
		this.dept_grade = dept_grade;
	}
	public String getCreat_date() {
		return creat_date;
	}
	public void setCreat_date(String creat_date) {
		this.creat_date = creat_date;
	}
	public String getDept_state() {
		return dept_state;
	}
	public void setDept_state(String dept_state) {
		this.dept_state = dept_state;
	}
	public String getDept_desc() {
		return dept_desc;
	}
	public void setDept_desc(String dept_desc) {
		this.dept_desc = dept_desc;
	}
	public Set getUsers() {
		return users;
	}
	public void setUsers(Set users) {
		this.users = users;
	}
	public Dept() {
		super();
		// TODO Auto-generated constructor stub
	}
	
}

⌨️ 快捷键说明

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