package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.List;
|
|
@TableName(schema = "db_app_sys",value = "tb_menu_user")
|
@Alias("MenuUser")
|
public class MenuUser {
|
|
@TableId(type = IdType.AUTO)
|
private Integer num;
|
private Integer id;
|
private String label;
|
private String name;
|
private String src;
|
private String icon;
|
@TableField("enableduse")
|
private boolean enableduse;
|
@TableField("permitName")
|
private String permitName;
|
private Integer level;
|
private Integer ord;
|
@TableField("menuId")
|
private Integer menuId;
|
|
private boolean closable;
|
@TableField("userId")
|
private Integer userId;
|
|
public Integer getNum() {
|
return num;
|
}
|
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getLabel() {
|
return label;
|
}
|
|
public void setLabel(String label) {
|
this.label = label;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getSrc() {
|
return src;
|
}
|
|
public void setSrc(String src) {
|
this.src = src;
|
}
|
|
public String getIcon() {
|
return icon;
|
}
|
|
public void setIcon(String icon) {
|
this.icon = icon;
|
}
|
|
|
public boolean isEnableduse() {
|
return enableduse;
|
}
|
|
public void setEnableduse(boolean enableduse) {
|
this.enableduse = enableduse;
|
}
|
|
public boolean isClosable() {
|
return closable;
|
}
|
|
public void setClosable(boolean closable) {
|
this.closable = closable;
|
}
|
|
public String getPermitName() {
|
return permitName;
|
}
|
|
public void setPermitName(String permitName) {
|
this.permitName = permitName;
|
}
|
|
public Integer getLevel() {
|
return level;
|
}
|
|
public void setLevel(Integer level) {
|
this.level = level;
|
}
|
|
public Integer getOrd() {
|
return ord;
|
}
|
|
public void setOrd(Integer ord) {
|
this.ord = ord;
|
}
|
|
public Integer getMenuId() {
|
return menuId;
|
}
|
|
public void setMenuId(Integer menuId) {
|
this.menuId = menuId;
|
}
|
|
public Integer getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Integer userId) {
|
this.userId = userId;
|
}
|
}
|