package com.vci.server.framework.systemConfig.security;
|
|
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 Jason
|
* @time 2022-10-20
|
* @version 1.0
|
*/
|
@CustomAnnotaion(CustomDescription = "机器密级")
|
public class MachSecurity extends AbstractEntity implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 404670812843284002L;
|
|
@CustomAnnotaion(CustomDescription = "ID",InToString = false)
|
private String id;
|
@CustomAnnotaion(CustomDescription = "名称")
|
private String name;
|
@CustomAnnotaion(CustomDescription = "IP地址")
|
private String ipAddress;
|
@CustomAnnotaion(CustomDescription = "MAC地址")
|
private String macAddress;
|
@CustomAnnotaion(CustomDescription = "密级",InToString = false)
|
private short secretGrade;
|
@CustomAnnotaion(CustomDescription = "描述")
|
private String description;
|
@CustomAnnotaion(CustomDescription = "创建时间",InToString = false)
|
private Timestamp createTime;
|
@CustomAnnotaion(CustomDescription = "创建人",InToString = false)
|
private String creator;
|
@CustomAnnotaion(CustomDescription = "修改时间",InToString = false)
|
private Timestamp modifyTime;
|
@CustomAnnotaion(CustomDescription = "修改者",InToString = false)
|
private String modifier;
|
|
|
public MachSecurity() {
|
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String desc) {
|
this.description = desc;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
|
public String getIpAddress() {
|
return ipAddress;
|
}
|
|
public void setIpAddress(String ipAddress) {
|
this.ipAddress = ipAddress;
|
}
|
|
public String getMacAddress() {
|
return macAddress;
|
}
|
|
public void setMacAddress(String macAddress) {
|
this.macAddress = macAddress;
|
}
|
|
public short getSecretGrade() {
|
return secretGrade;
|
}
|
|
public void setSecretGrade(short secretGrade) {
|
this.secretGrade = secretGrade;
|
}
|
|
public String getCreator() {
|
return creator;
|
}
|
|
public void setCreator(String creator) {
|
this.creator = creator;
|
}
|
|
public String getModifier() {
|
return modifier;
|
}
|
|
public void setModifier(String modifier) {
|
this.modifier = modifier;
|
}
|
|
|
public Timestamp getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Timestamp createTime) {
|
this.createTime = createTime;
|
}
|
|
public Timestamp getModifyTime() {
|
return modifyTime;
|
}
|
|
public void setModifyTime(Timestamp updateTime) {
|
this.modifyTime = updateTime;
|
}
|
|
}
|