Browse Source

添加字段

zwj 10 months ago
parent
commit
85271caca8

+ 28 - 0
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysDept.java

@@ -52,6 +52,16 @@ public class SysDept extends BaseEntity
52
     /** 父部门名称 */
52
     /** 父部门名称 */
53
     private String parentName;
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
     private List<SysDept> children = new ArrayList<SysDept>();
66
     private List<SysDept> children = new ArrayList<SysDept>();
57
 
67
 
@@ -181,6 +191,22 @@ public class SysDept extends BaseEntity
181
         this.children = children;
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
     @Override
210
     @Override
185
     public String toString() {
211
     public String toString() {
186
         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
212
         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -198,6 +224,8 @@ public class SysDept extends BaseEntity
198
             .append("createTime", getCreateTime())
224
             .append("createTime", getCreateTime())
199
             .append("updateBy", getUpdateBy())
225
             .append("updateBy", getUpdateBy())
200
             .append("updateTime", getUpdateTime())
226
             .append("updateTime", getUpdateTime())
227
+            .append("deptCode", getDeptCode())
228
+            .append("type", getType())
201
             .toString();
229
             .toString();
202
     }
230
     }
203
 }
231
 }