123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- /*
- * Copyright 2019-2020 Zheng Jie
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package me.zhengjie.modules.system.domain;
- import com.alibaba.fastjson.annotation.JSONField;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Getter;
- import lombok.Setter;
- import me.zhengjie.base.BaseEntity;
- import me.zhengjie.utils.enums.DataScopeEnum;
- import javax.persistence.*;
- import javax.validation.constraints.NotBlank;
- import javax.validation.constraints.NotNull;
- import java.io.Serializable;
- import java.util.Objects;
- import java.util.Set;
- /**
- * 角色
- * @author Zheng Jie
- * @date 2018-11-22
- */
- @Getter
- @Setter
- @Entity
- @Table(name = "sys_role")
- public class Role extends BaseEntity implements Serializable {
- @Id
- @Column(name = "role_id")
- @NotNull(groups = {Update.class})
- // @GeneratedValue(strategy = GenerationType.IDENTITY)
- @ApiModelProperty(value = "ID", hidden = true)
- private String id;
- @JSONField(serialize = false)
- @ManyToMany(mappedBy = "roles")
- @ApiModelProperty(value = "用户", hidden = true)
- private Set<User> users;
- @ManyToMany
- @JoinTable(name = "sys_roles_menus",
- joinColumns = {@JoinColumn(name = "role_id",referencedColumnName = "role_id")},
- inverseJoinColumns = {@JoinColumn(name = "menu_id",referencedColumnName = "menu_id")})
- @ApiModelProperty(value = "菜单", hidden = true)
- private Set<Menu> menus;
- @ManyToMany
- @JoinTable(name = "sys_roles_depts",
- joinColumns = {@JoinColumn(name = "role_id",referencedColumnName = "role_id")},
- inverseJoinColumns = {@JoinColumn(name = "dept_id",referencedColumnName = "dept_id")})
- @ApiModelProperty(value = "部门", hidden = true)
- private Set<Dept> depts;
- @NotBlank
- @ApiModelProperty(value = "名称", hidden = true)
- private String name;
- @NotBlank
- @ApiModelProperty(value = "角色标识", hidden = true)
- @Column(name = "role_key")
- private String roleKey;
- @ApiModelProperty(value = "数据权限,全部 、 本级 、 自定义")
- private String dataScope = DataScopeEnum.THIS_LEVEL.getValue();
- @Column(name = "level")
- @ApiModelProperty(value = "级别,数值越小,级别越大")
- private Integer level = 3;
- @ApiModelProperty(value = "描述")
- private String description;
- @Override
- public boolean equals(Object o) {
- if (this == o) {
- return true;
- }
- if (o == null || getClass() != o.getClass()) {
- return false;
- }
- Role role = (Role) o;
- return Objects.equals(id, role.id);
- }
- @Override
- public int hashCode() {
- return Objects.hash(id);
- }
- }
|