CustomVideoMenuVO.java
800 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.skua.modules.customvideo.vo;
import com.skua.modules.customvideo.entity.CustomVideoMenu;
import lombok.Data;
import java.util.ArrayList;
import java.util.List;
/**
* @author sonin
* @date 2021/12/15 14:04
*/
@Data
public class CustomVideoMenuVO {
private String id;
private String parentId;
private String title;
private Integer sort;
private boolean isLeaf;
private List<CustomVideoMenuVO> children;
public CustomVideoMenuVO(CustomVideoMenu entity) {
this.id = entity.getId();
this.parentId = entity.getParentId();
this.title = entity.getTitle();
this.sort = entity.getSort();
this.isLeaf = entity.isLeaf();
if (!entity.isLeaf()) {
this.children = new ArrayList<>();
}
}
}