|
@@ -1,5 +1,6 @@
|
|
|
package org.jeecg.modules.system.model;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import org.jeecg.modules.system.entity.SysDepart;
|
|
|
|
|
|
import java.io.Serializable;
|
|
@@ -84,6 +85,11 @@ public class SysDepartTreeModel implements Serializable{
|
|
|
private String directorUserIds;
|
|
|
//update-end---author:wangshuai ---date:20200308 for:[JTC-119]在部门管理菜单下设置部门负责人,新增字段部门负责人ids
|
|
|
|
|
|
+
|
|
|
+ private String kpideparttype;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
private List<SysDepartTreeModel> children = new ArrayList<>();
|
|
|
|
|
|
|
|
@@ -118,6 +124,7 @@ public class SysDepartTreeModel implements Serializable{
|
|
|
this.updateBy = sysDepart.getUpdateBy();
|
|
|
this.updateTime = sysDepart.getUpdateTime();
|
|
|
this.directorUserIds = sysDepart.getDirectorUserIds();
|
|
|
+ this.kpideparttype = sysDepart.getKpideparttype();
|
|
|
}
|
|
|
|
|
|
public boolean getIsLeaf() {
|
|
@@ -358,6 +365,14 @@ public class SysDepartTreeModel implements Serializable{
|
|
|
this.directorUserIds = directorUserIds;
|
|
|
}
|
|
|
|
|
|
+ public String getKpideparttype() {
|
|
|
+ return kpideparttype;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setKpideparttype(String kpideparttype) {
|
|
|
+ this.kpideparttype = kpideparttype;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 重写equals方法
|
|
|
*/
|