wangting
2025-01-16 18c43123b51a1688ab4ae01fe3d171c7d92e619b
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
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;
    }
}