123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- package com.ruoyi.system.domain;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.base.BaseEntity;
- /**
- * 角色表 sys_role
- *
- * @author ruoyi
- */
- public class SysRole extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 角色ID */
- @Excel(name = "角色序号")
- private Long roleId;
- /** 角色名称 */
- @Excel(name = "角色名称")
- private String roleName;
- /** 角色权限 */
- @Excel(name = "角色权限")
- private String roleKey;
- /** 角色排序 */
- @Excel(name = "角色排序")
- private String roleSort;
- /** 数据范围(1:所有数据权限;2:自定数据权限) */
- @Excel(name = "数据范围", readConverterExp = "1=所有数据权限,2=自定义数据权限")
- private String dataScope;
- /** 角色状态(0正常 1停用) */
- @Excel(name = "角色状态", readConverterExp = "0=正常,1=停用")
- private String status;
- /** 删除标志(0代表存在 2代表删除) */
- private String delFlag;
- /** 用户是否存在此角色标识 默认不存在 */
- private boolean flag = false;
- /** 菜单组 */
- private Long[] menuIds;
- /** 部门组(数据权限) */
- private Long[] deptIds;
- public Long getRoleId()
- {
- return roleId;
- }
- public void setRoleId(Long roleId)
- {
- this.roleId = roleId;
- }
- public String getDataScope()
- {
- return dataScope;
- }
- public void setDataScope(String dataScope)
- {
- this.dataScope = dataScope;
- }
- public String getRoleName()
- {
- return roleName;
- }
- public void setRoleName(String roleName)
- {
- this.roleName = roleName;
- }
- public String getRoleKey()
- {
- return roleKey;
- }
- public void setRoleKey(String roleKey)
- {
- this.roleKey = roleKey;
- }
- public String getRoleSort()
- {
- return roleSort;
- }
- public void setRoleSort(String roleSort)
- {
- this.roleSort = roleSort;
- }
- public String getStatus()
- {
- return status;
- }
- public String getDelFlag()
- {
- return delFlag;
- }
- public void setDelFlag(String delFlag)
- {
- this.delFlag = delFlag;
- }
- public void setStatus(String status)
- {
- this.status = status;
- }
- public boolean isFlag()
- {
- return flag;
- }
- public void setFlag(boolean flag)
- {
- this.flag = flag;
- }
- public Long[] getMenuIds()
- {
- return menuIds;
- }
- public void setMenuIds(Long[] menuIds)
- {
- this.menuIds = menuIds;
- }
- public Long[] getDeptIds()
- {
- return deptIds;
- }
- public void setDeptIds(Long[] deptIds)
- {
- this.deptIds = deptIds;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("roleId", getRoleId())
- .append("roleName", getRoleName())
- .append("roleKey", getRoleKey())
- .append("roleSort", getRoleSort())
- .append("dataScope", getDataScope())
- .append("status", getStatus())
- .append("delFlag", getDelFlag())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .append("remark", getRemark())
- .toString();
- }
- }
|