文档库推送信息处理

This commit is contained in:
wangchengjun
2022-03-24 11:34:37 +08:00
parent 8619773213
commit 7c78f4d9c1
3 changed files with 573 additions and 490 deletions
@@ -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;
} }
@@ -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;
}