FuncDto.java 557 Bytes
Newer Older
zzrdark committed
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.mx.cneeds.common.dto;

import lombok.Data;

import java.io.Serializable;

/**
 * @ClassName FuncDto
 * @Author zzrdark
 * @Date 2020-03-09 16:17
 * @Description TODO
 **/
@Data
public class FuncDto implements Serializable {

    private Long funcId;

    private Long parentId;

    private String name;

    private String url;

zzrdark committed
24 25 26
    /**
     * 授权
     */
zzrdark committed
27 28
    private String perms;

zzrdark committed
29 30 31
    /**
     * 类型   0:目录   1:菜单   2:按钮
     */
zzrdark committed
32 33
    private Integer type;

zzrdark committed
34 35 36
    /**
     * 排序
     */
zzrdark committed
37 38
    private Integer orderNum;
}