All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.diboot.iam.entity.IamOrg Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2015-2021, www.dibo.ltd ([email protected]).
 * 

* 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 *

* https://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 com.diboot.iam.entity; import com.baomidou.mybatisplus.annotation.FieldFill; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.diboot.core.entity.BaseEntity; import com.diboot.core.entity.BaseTreeEntity; import com.fasterxml.jackson.annotation.JsonIgnore; import lombok.Getter; import lombok.Setter; import lombok.experimental.Accessors; import org.hibernate.validator.constraints.Length; import jakarta.validation.constraints.NotNull; import java.time.LocalDateTime; /** * 组织机构 Entity定义 * * @author [email protected] * @version 2.2 * @date 2019-12-03 */ @Getter @Setter @Accessors(chain = true) @TableName("dbt_iam_org") public class IamOrg extends BaseTreeEntity { private static final long serialVersionUID = 8942911223090443934L; /** * 组织树的虚拟根节点 ID */ public static final String VIRTUAL_ROOT_ID = "0"; /** * 租户ID */ @JsonIgnore @TableField private String tenantId; /** * 企业根节点ID */ @TableField() private String rootOrgId; /** * 名称 */ @NotNull(message = "{validation.iamOrg.name.NotNull.message}") @Length(max = 100, message = "{validation.iamOrg.name.Length.message}") @TableField() private String name; /** * 类型:公司/部门 */ @NotNull(message = "{validation.iamOrg.type.NotNull.message}") @Length(max = 100, message = "{validation.iamOrg.type.Length.message}") @TableField() private String type; /** * 编码 */ @NotNull(message = "{validation.iamOrg.code.NotNull.message}") @Length(max = 50, message = "{validation.iamOrg.code.Length.message}") @TableField() private String code; /** * 负责人ID */ @TableField() private String managerId; /** * 排序号 */ @TableField() private Long sortId; /** * 状态 */ @TableField private String status; /** * 组织备注 */ private String orgComment; /** * 更新时间 */ @TableField(fill = FieldFill.INSERT_UPDATE) private LocalDateTime updateTime; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy