|
package org.springblade.mdm.basesetting.producedivision.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serial;
|
import java.io.Serializable;
|
|
/**
|
* 实体类
|
*
|
* @author Chill
|
*/
|
@Data
|
@TableName("blade_dept")
|
@Schema(description = "Dept对象")
|
public class MdmDept implements Serializable {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@JsonSerialize(using = ToStringSerializer.class)
|
@Schema(description = "主键")
|
@TableId(value = "id", type = IdType.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 租户ID
|
*/
|
@Schema(description = "租户ID")
|
private String tenantId;
|
|
/**
|
* 父主键
|
*/
|
@JsonSerialize(using = ToStringSerializer.class)
|
@Schema(description = "父主键")
|
private Long parentId;
|
|
/**
|
* 机构名
|
*/
|
@Schema(description = "机构名")
|
private String deptName;
|
|
/**
|
* 机构全称
|
*/
|
@Schema(description = "机构全称")
|
private String fullName;
|
|
/**
|
* 祖级机构主键
|
*/
|
@Schema(description = "祖级机构主键")
|
private String ancestors;
|
|
/**
|
* 机构类型
|
*/
|
@Schema(description = "机构类型")
|
private Integer deptCategory;
|
|
/**
|
* 排序
|
*/
|
@Schema(description = "排序")
|
private Integer sort;
|
|
/**
|
* 备注
|
*/
|
@Schema(description = "备注")
|
private String remark;
|
|
/**
|
* 业务状态
|
*/
|
@Schema(description = "业务状态")
|
private Integer status;
|
|
/**
|
* 是否已删除
|
*/
|
@TableLogic
|
@Schema(description = "是否已删除")
|
private Integer isDeleted;
|
|
|
}
|