xinyb
2024-09-21 53241c9e1a7e4cbb7383b77919a86bba9c1a91e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.yc.crm.mail.entity;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * @BelongsProject: eCoWorksV3
 * @BelongsPackage: com.yc.crm.mail.entity
 * @author: xinyb
 * @CreateTime: 2024-09-21  14:36
 * @Description:
 */
@Data
public class FolderEntity {
    private String folderName;
    private Integer folderId;
    private String rowId;
    private String treeControl;//控件名
    private String parentRowId;
    private List<FolderEntity> list;
 
}