|
@@ -52,6 +52,16 @@ public class SysDept extends BaseEntity
|
52
|
52
|
/** 父部门名称 */
|
53
|
53
|
private String parentName;
|
54
|
54
|
|
|
55
|
+ /**
|
|
56
|
+ * 部门编码
|
|
57
|
+ */
|
|
58
|
+ private String deptCode;
|
|
59
|
+
|
|
60
|
+ /**
|
|
61
|
+ * 1 职能部门 2 生产部门 3 其他
|
|
62
|
+ */
|
|
63
|
+ private int type;
|
|
64
|
+
|
55
|
65
|
/** 子部门 */
|
56
|
66
|
private List<SysDept> children = new ArrayList<SysDept>();
|
57
|
67
|
|
|
@@ -181,6 +191,22 @@ public class SysDept extends BaseEntity
|
181
|
191
|
this.children = children;
|
182
|
192
|
}
|
183
|
193
|
|
|
194
|
+ public String getDeptCode() {
|
|
195
|
+ return deptCode;
|
|
196
|
+ }
|
|
197
|
+
|
|
198
|
+ public void setDeptCode(String deptCode) {
|
|
199
|
+ this.deptCode = deptCode;
|
|
200
|
+ }
|
|
201
|
+
|
|
202
|
+ public int getType() {
|
|
203
|
+ return type;
|
|
204
|
+ }
|
|
205
|
+
|
|
206
|
+ public void setType(int type) {
|
|
207
|
+ this.type = type;
|
|
208
|
+ }
|
|
209
|
+
|
184
|
210
|
@Override
|
185
|
211
|
public String toString() {
|
186
|
212
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
@@ -198,6 +224,8 @@ public class SysDept extends BaseEntity
|
198
|
224
|
.append("createTime", getCreateTime())
|
199
|
225
|
.append("updateBy", getUpdateBy())
|
200
|
226
|
.append("updateTime", getUpdateTime())
|
|
227
|
+ .append("deptCode", getDeptCode())
|
|
228
|
+ .append("type", getType())
|
201
|
229
|
.toString();
|
202
|
230
|
}
|
203
|
231
|
}
|