|
@@ -1,173 +0,0 @@
|
|
|
-package com.diagbot.entity;
|
|
|
-
|
|
|
-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 java.io.Serializable;
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
-/**
|
|
|
- * <p>
|
|
|
- * 系统角色表
|
|
|
- * </p>
|
|
|
- *
|
|
|
- * @author gaodm
|
|
|
- * @since 2018-08-30
|
|
|
- */
|
|
|
-@TableName("sys_role")
|
|
|
-public class Role implements Serializable {
|
|
|
-
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
- /**
|
|
|
- * 角色ID
|
|
|
- */
|
|
|
- @TableId(value = "id", type = IdType.AUTO)
|
|
|
- private Long id;
|
|
|
-
|
|
|
- /**
|
|
|
- * 是否删除,N:未删除,Y:删除
|
|
|
- */
|
|
|
- private String isDeleted;
|
|
|
-
|
|
|
- /**
|
|
|
- * 记录创建时间
|
|
|
- */
|
|
|
- private Date gmtCreate;
|
|
|
-
|
|
|
- /**
|
|
|
- * 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
- */
|
|
|
- private Date gmtModified;
|
|
|
-
|
|
|
- /**
|
|
|
- * 创建人,0表示无创建人值
|
|
|
- */
|
|
|
- private String creator;
|
|
|
-
|
|
|
- /**
|
|
|
- * 修改人,如果为0则表示纪录未修改
|
|
|
- */
|
|
|
- private String modifier;
|
|
|
-
|
|
|
- /**
|
|
|
- * 角色名称
|
|
|
- */
|
|
|
- private String name;
|
|
|
-
|
|
|
- /**
|
|
|
- * 角色等级
|
|
|
- */
|
|
|
- @TableField("roleLevel")
|
|
|
- private Integer roleLevel;
|
|
|
-
|
|
|
- /**
|
|
|
- * 角色描述
|
|
|
- */
|
|
|
- private String descritpion;
|
|
|
-
|
|
|
- /**
|
|
|
- * 菜单ID:对应角色ID
|
|
|
- */
|
|
|
- @TableField("menuItems")
|
|
|
- private String menuItems;
|
|
|
-
|
|
|
-
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public String getIsDeleted() {
|
|
|
- return isDeleted;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsDeleted(String isDeleted) {
|
|
|
- this.isDeleted = isDeleted;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getGmtCreate() {
|
|
|
- return gmtCreate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGmtCreate(Date gmtCreate) {
|
|
|
- this.gmtCreate = gmtCreate;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getGmtModified() {
|
|
|
- return gmtModified;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGmtModified(Date gmtModified) {
|
|
|
- this.gmtModified = gmtModified;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCreator() {
|
|
|
- return creator;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreator(String creator) {
|
|
|
- this.creator = creator;
|
|
|
- }
|
|
|
-
|
|
|
- public String getModifier() {
|
|
|
- return modifier;
|
|
|
- }
|
|
|
-
|
|
|
- public void setModifier(String modifier) {
|
|
|
- this.modifier = modifier;
|
|
|
- }
|
|
|
-
|
|
|
- public String getName() {
|
|
|
- return name;
|
|
|
- }
|
|
|
-
|
|
|
- public void setName(String name) {
|
|
|
- this.name = name;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getRoleLevel() {
|
|
|
- return roleLevel;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRoleLevel(Integer roleLevel) {
|
|
|
- this.roleLevel = roleLevel;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDescritpion() {
|
|
|
- return descritpion;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDescritpion(String descritpion) {
|
|
|
- this.descritpion = descritpion;
|
|
|
- }
|
|
|
-
|
|
|
- public String getMenuItems() {
|
|
|
- return menuItems;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMenuItems(String menuItems) {
|
|
|
- this.menuItems = menuItems;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "Role{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", name=" + name +
|
|
|
- ", roleLevel=" + roleLevel +
|
|
|
- ", descritpion=" + descritpion +
|
|
|
- ", menuItems=" + menuItems +
|
|
|
- "}";
|
|
|
- }
|
|
|
-}
|