| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import org.springframework.security.core.GrantedAuthority; |
| | | |
| | | import java.io.Serializable; |
| | | import java.text.SimpleDateFormat; |
| | |
| | | |
| | | @Data |
| | | @TableName("sys_menu") |
| | | public class Menu implements Serializable { |
| | | public class Menu implements Serializable, GrantedAuthority { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | public static final int TYPE_MENU = 0; // 菜单类型 |
| | | public static final int TYPE_BTN = 1; // 按钮类型 |
| | | |
| | | /** |
| | | * ID |
| | | */ |