HrDept.java
2.26 KB
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
package cn.csbr.springboot.dao.model;
import javax.persistence.Column;
import javax.persistence.Id;
import javax.persistence.Table;
@Table(name = "hr_dept")
public class HrDept {
@Id
@Column(name = "deptId")
private Long deptid;
@Column(name = "parent_id")
private Long parentId;
@Column(name = "dept_name")
private String deptName;
@Column(name = "dept_code")
private String deptCode;
@Column(name = "dept_desc")
private String deptDesc;
@Column(name = "dept_office_address")
private String deptOfficeAddress;
@Column(name = "is_delete")
private String isDelete;
/**
* @return deptId
*/
public Long getDeptid() {
return deptid;
}
/**
* @param deptid
*/
public void setDeptid(Long deptid) {
this.deptid = deptid;
}
/**
* @return parent_id
*/
public Long getParentId() {
return parentId;
}
/**
* @param parentId
*/
public void setParentId(Long parentId) {
this.parentId = parentId;
}
/**
* @return dept_name
*/
public String getDeptName() {
return deptName;
}
/**
* @param deptName
*/
public void setDeptName(String deptName) {
this.deptName = deptName;
}
/**
* @return dept_code
*/
public String getDeptCode() {
return deptCode;
}
/**
* @param deptCode
*/
public void setDeptCode(String deptCode) {
this.deptCode = deptCode;
}
/**
* @return dept_desc
*/
public String getDeptDesc() {
return deptDesc;
}
/**
* @param deptDesc
*/
public void setDeptDesc(String deptDesc) {
this.deptDesc = deptDesc;
}
/**
* @return dept_office_address
*/
public String getDeptOfficeAddress() {
return deptOfficeAddress;
}
/**
* @param deptOfficeAddress
*/
public void setDeptOfficeAddress(String deptOfficeAddress) {
this.deptOfficeAddress = deptOfficeAddress;
}
/**
* @return is_delete
*/
public String getIsDelete() {
return isDelete;
}
/**
* @param isDelete
*/
public void setIsDelete(String isDelete) {
this.isDelete = isDelete;
}
}