dangsn
2024-06-11 dba1e53cd7652f1b973ffec118e5b3312278c814
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
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;
    }
 
}