package com.vci.server.framework.systemConfig.stafforgmanage.role;
|
|
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 Role extends AbstractEntity implements Serializable{
|
|
private static final long serialVersionUID = 2701646488767359295L;
|
|
@CustomAnnotaion(CustomDescription = "ID",InToString = false)
|
private String id;
|
@CustomAnnotaion(CustomDescription = "名称")
|
private String name;
|
@CustomAnnotaion(CustomDescription = "类型",InToString = false)
|
private short type;
|
@CustomAnnotaion(CustomDescription = "描述")
|
private String desc;
|
@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 Role() {
|
|
}
|
|
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 short getType() {
|
return type;
|
}
|
|
public void setType(short type) {
|
this.type = type;
|
}
|
|
public String getCreateUser() {
|
return createUser;
|
}
|
|
public void setCreateUser(String createUser) {
|
this.createUser = createUser;
|
}
|
|
public String getUpdateUser() {
|
return updateUser;
|
}
|
|
public void setUpdateUser(String updateUser) {
|
this.updateUser = updateUser;
|
}
|
|
|
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 getGrantor() {
|
return grantor;
|
}
|
|
public void setGrantor(String grantor) {
|
this.grantor = grantor;
|
}
|
}
|