文档库推送信息处理
This commit is contained in:
+3
-3
@@ -78,7 +78,7 @@ public class SysDepartUserTreeModel implements Serializable {
|
|||||||
|
|
||||||
private List<SysUserTreeModel> list = new ArrayList<>(); //当前部门的用户列表,不包括子部门的
|
private List<SysUserTreeModel> list = new ArrayList<>(); //当前部门的用户列表,不包括子部门的
|
||||||
|
|
||||||
private List<SysDepartTreeModel> children = new ArrayList<>();
|
private List<SysDepartUserTreeModel> children = new ArrayList<>();
|
||||||
|
|
||||||
public List<SysUserTreeModel> getList() {
|
public List<SysUserTreeModel> getList() {
|
||||||
return list;
|
return list;
|
||||||
@@ -142,11 +142,11 @@ public class SysDepartUserTreeModel implements Serializable {
|
|||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<SysDepartTreeModel> getChildren() {
|
public List<SysDepartUserTreeModel> getChildren() {
|
||||||
return children;
|
return children;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setChildren(List<SysDepartTreeModel> children) {
|
public void setChildren(List<SysDepartUserTreeModel> children) {
|
||||||
if (children == null) {
|
if (children == null) {
|
||||||
this.isLeaf = true;
|
this.isLeaf = true;
|
||||||
}
|
}
|
||||||
|
|||||||
+551
-487
File diff suppressed because it is too large
Load Diff
+19
@@ -0,0 +1,19 @@
|
|||||||
|
package com.jero.modules.system.vo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class SysPushVO {
|
||||||
|
/**
|
||||||
|
* 中英文
|
||||||
|
*/
|
||||||
|
private String cut;
|
||||||
|
/**
|
||||||
|
* 组织ID
|
||||||
|
*/
|
||||||
|
private String departId;
|
||||||
|
/**
|
||||||
|
* 列表JSON
|
||||||
|
*/
|
||||||
|
private String json;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user