新增待办信息
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
package com.jeesite.modules.app.dao.file;
|
||||
|
||||
|
||||
import com.jeesite.modules.biz.entity.BizFolders;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class FolderItem implements Serializable {
|
||||
|
||||
|
||||
private String id;
|
||||
private String name;
|
||||
private Boolean expanded;
|
||||
|
||||
private String type;
|
||||
|
||||
List<BizFolders> children = new ArrayList<>();
|
||||
|
||||
public FolderItem() {
|
||||
}
|
||||
|
||||
public FolderItem(String id, String name, Boolean expanded, String type, List<BizFolders> children) {
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.expanded = expanded;
|
||||
this.type = type;
|
||||
this.children = children;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user