package com.vci.server.framework.systemConfig.stafforgmanage.combination;
|
|
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) 2012</p>
|
* <p>Company: VCI</p>
|
* @author wangxl
|
* @time 2013-1-3
|
* @version 1.0
|
*/
|
@CustomAnnotaion(CustomDescription = "密码组合方式")
|
public class Combination 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 = "描述")
|
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 Combination() {
|
|
}
|
|
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 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;
|
}
|
|
}
|