package com.highdatas.srs.entity;
|
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author kimi
|
* @since 2020-01-15
|
*/
|
@TableName("sys_menu")
|
public class SysMenu extends Model<SysMenu> {
|
|
private static final long serialVersionUID = 1L;
|
|
private String id;
|
|
private String parentid;
|
|
private String text;
|
|
private String url;
|
|
private String icon;
|
|
private String img;
|
|
private String nodetype;
|
|
private String orderno;
|
|
public String getId() {
|
return id;
|
}
|
|
public SysMenu setId(String id) {
|
this.id = id;
|
return this;
|
}
|
public String getParentid() {
|
return parentid;
|
}
|
|
public SysMenu setParentid(String parentid) {
|
this.parentid = parentid;
|
return this;
|
}
|
public String getText() {
|
return text;
|
}
|
|
public SysMenu setText(String text) {
|
this.text = text;
|
return this;
|
}
|
public String getUrl() {
|
return url;
|
}
|
|
public SysMenu setUrl(String url) {
|
this.url = url;
|
return this;
|
}
|
public String getIcon() {
|
return icon;
|
}
|
|
public SysMenu setIcon(String icon) {
|
this.icon = icon;
|
return this;
|
}
|
public String getImg() {
|
return img;
|
}
|
|
public SysMenu setImg(String img) {
|
this.img = img;
|
return this;
|
}
|
public String getNodetype() {
|
return nodetype;
|
}
|
|
public SysMenu setNodetype(String nodetype) {
|
this.nodetype = nodetype;
|
return this;
|
}
|
public String getOrderno() {
|
return orderno;
|
}
|
|
public SysMenu setOrderno(String orderno) {
|
this.orderno = orderno;
|
return this;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "SysMenu{" +
|
"id=" + id +
|
", parentid=" + parentid +
|
", text=" + text +
|
", url=" + url +
|
", icon=" + icon +
|
", img=" + img +
|
", nodetype=" + nodetype +
|
", orderno=" + orderno +
|
"}";
|
}
|
}
|