|
|
|
@ -26,7 +26,6 @@ import java.util.List;
|
|
|
|
|
@DynamicInsert
|
|
|
|
|
@DynamicUpdate
|
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
//@Table(name="SYS_MENU",indexes = {@Index(name="索引名称",columnList = "列名1,列名2")})
|
|
|
|
|
@Table(name="SYS_MENU",indexes = {
|
|
|
|
|
@Index(name="index_sys_menu_parent_id",columnList = "PARENT_ID"),
|
|
|
|
|
})
|
|
|
|
@ -46,7 +45,7 @@ public class SysMenu extends BaseBean {
|
|
|
|
|
private String menuCode;
|
|
|
|
|
|
|
|
|
|
@Column(name="MENU_TYPE")
|
|
|
|
|
@ApiParam(value ="功能类型(枚举:1.模块,2.菜单,3.按钮)" , example ="-1")
|
|
|
|
|
@ApiParam(value ="功能类型" , example ="-1" ,access = "枚举:1.模块,2.菜单,3.按钮")
|
|
|
|
|
private Integer menuType;
|
|
|
|
|
|
|
|
|
|
// 根节点-1
|
|
|
|
@ -88,7 +87,7 @@ public class SysMenu extends BaseBean {
|
|
|
|
|
private String menuDescription;
|
|
|
|
|
|
|
|
|
|
@Column(name="MENU_STATUS")
|
|
|
|
|
@ApiParam(value ="功能状态(1.正常,2.禁用)" , example ="1" , access ="功能状态(1.正常,2.禁用)",defaultValue="1")
|
|
|
|
|
@ApiParam(value ="功能状态" , example ="1" , access ="功能状态(1.正常,2.禁用)",defaultValue="1")
|
|
|
|
|
private Integer menuStatus;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|