新增待办信息

This commit is contained in:
2025-12-19 00:06:23 +08:00
parent ab3e176be9
commit 065469cc90
10 changed files with 559 additions and 348 deletions

View File

@@ -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;
}
}