package com.hehenian.manager.modules.sys.model; /** * @author zhanbmf * */ public class AuthorityResources { private Integer id; private Integer authorityId; private Integer resourceId; private Boolean enabled; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getAuthorityId() { return authorityId; } public void setAuthorityId(Integer authorityId) { this.authorityId = authorityId; } public Integer getResourceId() { return resourceId; } public void setResourceId(Integer resourceId) { this.resourceId = resourceId; } public Boolean getEnabled() { return enabled; } public void setEnabled(Boolean enabled) { this.enabled = enabled; } }