12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- package com.cloudcross.ssp.model;
- import java.util.HashSet;
- import java.util.Set;
- @SuppressWarnings("serial")
- public class Roles implements java.io.Serializable {
- private Integer id;
- private String enable;//是否禁用角色 1 表示禁用 2 表示不禁用
- private String name;
- private String roleKey;//唯一,新境时,需要判断
- private String description;
- private Set<Resources> resources = new HashSet<Resources>(0);
- public Roles() {
- }
- public Integer getId() {
- return this.id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getEnable() {
- return this.enable;
- }
- public void setEnable(String enable) {
- this.enable = enable;
- }
- public String getName() {
- return this.name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public Set<Resources> getResources() {
- return resources;
- }
- public void setResources(Set<Resources> resources) {
- this.resources = resources;
- }
- public String getDescription() {
- return description;
- }
- public void setDescription(String description) {
- this.description = description;
- }
- public String getRoleKey() {
- return roleKey;
- }
- public void setRoleKey(String roleKey) {
- this.roleKey = roleKey;
- }
- }
|