package com.stylefeng.guns.modular.system.model;
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
/**
*
* 角色表
*
*
* @author stylefeng
* @since 2017-07-11
*/
@TableName("sys_role")
public class RoleVo extends Model {
private static final long serialVersionUID = 1L;
/**
* 主键id
*/
@TableId(value="id", type= IdType.AUTO)
private Integer id;
/**
* 序号
*/
@ApiModelProperty("排序序号")
private Integer num;
/**
*
*/
@ApiModelProperty("父角色id 可不用")
private Integer pid;
/**
* 角色名称
*/
@ApiModelProperty("角色名称")
private String name;
/**
* 部门名称
*/
@ApiModelProperty("部门id")
private Integer deptid;
/**
* 提示
*/
@ApiModelProperty("提示 可不用")
private String tips;
/**
* 保留字段(暂时没用)
*/
@ApiModelProperty("是否 当前角色 1否 2是")
private Integer isRole;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getNum() {
return num;
}
public void setNum(Integer num) {
this.num = num;
}
public Integer getPid() {
return pid;
}
public void setPid(Integer pid) {
this.pid = pid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getDeptid() {
return deptid;
}
public void setDeptid(Integer deptid) {
this.deptid = deptid;
}
public String getTips() {
return tips;
}
public void setTips(String tips) {
this.tips = tips;
}
@Override
protected Serializable pkVal() {
return this.id;
}
public Integer getIsRole() {
return isRole;
}
public void setIsRole(Integer isRole) {
this.isRole = isRole;
}
@Override
public String toString() {
return "Role{" +
"id=" + id +
", num=" + num +
", pid=" + pid +
", name=" + name +
", deptid=" + deptid +
", tips=" + tips +
"}";
}
}