无关风月
2024-12-09 2053b8fe0e98d4b4449bc756a93ced78f42277c4
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
package com.jilongda.manage.authority.vo;
 
import com.jilongda.manage.authority.model.SecResources;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * @author madman
 * @version 1.0
 * @date 2019/8/13 11:56
 */
@EqualsAndHashCode(callSuper = true)
@Data
@ApiModel(value = "资源vo")
public class SecResourceVO extends SecResources {
    private static final long serialVersionUID = 2932580245701601388L;
    @ApiModelProperty(value = "用户是否拥有此权限")
    private Boolean flag;
 
    @ApiModelProperty(value = "子集列表,无则为[]")
    private List<SecResourceVO> children = new ArrayList<>();
}