You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-wms-java/src/main/java/com/glxp/api/entity/auth/SysMenu.java

85 lines
1.2 KiB
Java

3 years ago
package com.glxp.api.entity.auth;
import lombok.Data;
import lombok.EqualsAndHashCode;
3 years ago
@Data
@EqualsAndHashCode(callSuper = true)
3 years ago
public class SysMenu extends TreeEntity<SysMenu> {
/**
* ID
*/
private Long menuId;
/**
*
*/
private String menuName;
/**
*
*/
private Integer orderNum;
/**
*
*/
private String path;
/**
*
*/
private String component;
/**
*
*/
private String queryParam;
/**
* 0 1
*/
private String isFrame;
/**
* 0 1
*/
private String isCache;
/**
* M C F
*/
private String menuType;
/**
* 0 1
*/
private String visible;
/**
* 0 1
*/
private String status;
/**
*
*/
private String perms;
/**
*
*/
private String icon;
/**
*
*/
private String remark;
private Long neMenuId;
}