| 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 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 2019-03-25
- */
- @Entity
- @Getter
- @Setter
- @Table(name="sys_dept")
- public class Dept extends BaseEntity implements Serializable {
- @Id
- @Column(name = "dept_id")
- @NotNull(groups = Update.class)
- @ApiModelProperty(value = "ID", hidden = true)
- private String id;
- @JSONField(serialize = false)
- @ManyToMany(mappedBy = "depts")
- @ApiModelProperty(value = "角色")
- private Set<Role> roles;
- @ApiModelProperty(value = "排序")
- private Integer deptSort;
- @Column(name = "dept_type")
- @ApiModelProperty(value = "部门类型")
- private Integer deptType;
- @Column(name = "tree_names")
- @ApiModelProperty(value = "树形目录名称")
- private String treeNames;
- @Column(name = "tree_ids")
- @ApiModelProperty(value = "树形目录编号")
- private String treeIds;
- @NotBlank
- @ApiModelProperty(value = "部门名称")
- private String name;
- @ApiModelProperty(value = "部门描述")
- private String description;
- @ApiModelProperty(value = "部门备注")
- private String remark;
- @NotNull
- @ApiModelProperty(value = "是否启用")
- private Boolean enabled;
- @ApiModelProperty(value = "上级部门")
- private String pid;
- @ApiModelProperty(value = "子节点数目", hidden = true)
- private Integer subCount = 0;
- @Override
- public boolean equals(Object o) {
- if (this == o) {
- return true;
- }
- if (o == null || getClass() != o.getClass()) {
- return false;
- }
- Dept dept = (Dept) o;
- return Objects.equals(id, dept.id) &&
- Objects.equals(name, dept.name);
- }
- @Override
- public int hashCode() {
- return Objects.hash(id, name);
- }
- }
|