| 1234567891011121314151617181920212223 |
- package com.izouma.awesomeAdmin.dto;
- public interface MenuDTO {
- Long getId();
- String getName();
- String getPath();
- String getIcon();
- Integer getSort();
- Long getParent();
- Boolean getRoot();
- Boolean getEnabled();
- Boolean getActive();
- String getCategory();
- }
|