package com.vci.server.framework.systemConfig.stafforgmanage.dept;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
import com.vci.common.annotaion.CustomAnnotaion;
|
import com.vci.common.objects.AbstractEntity;
|
|
/**
|
* <p>Title: 部门类</p>
|
* <p>Description:包含了部门基本信息</p>
|
* <p>Copyright: Copyright (C) 2011 </p>
|
* <p>Company: VCI </p>
|
*
|
* @author wangxl
|
* @time 2011-6-3
|
* @version 1.0
|
*/
|
@CustomAnnotaion(CustomDescription = "部门")
|
public class Department extends AbstractEntity implements Serializable{
|
|
private static final long serialVersionUID = -8322056205373619478L;
|
@CustomAnnotaion(CustomDescription = "ID",InToString = false)
|
private String id;
|
@CustomAnnotaion(CustomDescription = "名称")
|
private String name;
|
@CustomAnnotaion(CustomDescription = "编号")
|
private String num;
|
@CustomAnnotaion(CustomDescription = "代码")
|
private String code;
|
@CustomAnnotaion(CustomDescription = "专业")
|
private String specialties;
|
@CustomAnnotaion(CustomDescription = "状态")
|
private short status;
|
@CustomAnnotaion(CustomDescription = "描述")
|
private String desc;
|
@CustomAnnotaion(CustomDescription = "父部门ID",InToString = false)
|
private String parentId;
|
@CustomAnnotaion(CustomDescription = "创建时间",InToString = false)
|
private Timestamp createTime;
|
@CustomAnnotaion(CustomDescription = "创建人",InToString = false)
|
private String createUser;
|
@CustomAnnotaion(CustomDescription = "更新时间",InToString = false)
|
private Timestamp updateTime;
|
@CustomAnnotaion(CustomDescription = "更新人",InToString = false)
|
private String updateUser;
|
@CustomAnnotaion(CustomDescription = "授权者",InToString = false)
|
private String grantor;
|
|
public Department() {
|
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
public String getId() {
|
return id;
|
}
|
public void setId(String id) {
|
this.id = id;
|
}
|
public String getName() {
|
return name;
|
}
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getSpecialties() {
|
return specialties;
|
}
|
|
public void setSpecialties(String specialties) {
|
this.specialties = specialties;
|
}
|
|
public String getCreateUser() {
|
return createUser;
|
}
|
|
public void setCreateUser(String createUser) {
|
this.createUser = createUser;
|
}
|
|
public Timestamp getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Timestamp createTime) {
|
this.createTime = createTime;
|
}
|
|
public Timestamp getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Timestamp updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public String getUpdateUser() {
|
return updateUser;
|
}
|
|
public void setUpdateUser(String updateUser) {
|
this.updateUser = updateUser;
|
}
|
|
public String getParentId() {
|
return parentId;
|
}
|
|
public void setParentId(String parentId) {
|
this.parentId = parentId;
|
}
|
public String getNum() {
|
return num;
|
}
|
|
public void setNum(String num) {
|
this.num = num;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
|
public short getStatus() {
|
return status;
|
}
|
|
public void setStatus(short status) {
|
this.status = status;
|
}
|
|
public String getGrantor() {
|
return grantor;
|
}
|
|
public void setGrantor(String grantor) {
|
this.grantor = grantor;
|
}
|
}
|