liusheng
2024-09-18 907641e56c2085aaa81f267946dc3e3e9fca73e7
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysDept.java
@@ -16,206 +16,204 @@
/**
 * 部门表 sys_dept
 *
 *
 * @author ruoyi
 */
@Data
@ApiModel(value = "SysDept", description = "部门表")
public class SysDept extends BaseEntity
{
public class SysDept extends BaseEntity {
    private static final long serialVersionUID = 1L;
    /** 部门ID */
    /**
     * 部门ID
     */
    @ApiModelProperty("部门ID")
    private Long deptId;
    /** 父部门ID */
    /**
     * 父部门ID
     */
    @ApiModelProperty("父部门ID")
    private Long parentId;
    /** 祖级列表 */
    /**
     * 祖级列表
     */
    @ApiModelProperty("祖级列表")
    private String ancestors;
    /** 部门名称 */
    /**
     * 部门名称
     */
    @ApiModelProperty("部门名称")
    private String deptName;
    /** 显示顺序 */
    /**
     * 显示顺序
     */
    @ApiModelProperty("显示顺序")
    private Integer orderNum;
    /** 负责人 */
    /**
     * 负责人
     */
    @ApiModelProperty("负责人")
    private String leader;
    /** 联系电话 */
    /**
     * 联系电话
     */
    @ApiModelProperty("联系电话")
    private String phone;
    /** 邮箱 */
    /**
     * 邮箱
     */
    @ApiModelProperty("邮箱")
    private String email;
    /** 部门状态:0正常,1停用 */
    /**
     * 部门状态:0正常,1停用
     */
    @ApiModelProperty("部门状态:0正常,1停用")
    private String status;
    /** 删除标志(0代表存在 2代表删除) */
    /**
     * 删除标志(0代表存在 2代表删除)
     */
    @ApiModelProperty("删除标志(0代表存在 2代表删除)")
    private String delFlag;
    /** 父部门名称 */
    /**
     * 父部门名称
     */
    @ApiModelProperty("父部门名称")
    private String parentName;
    /** 子部门 */
    /**
     * 子部门
     */
    @ApiModelProperty("子部门")
    private List<SysDept> children = new ArrayList<SysDept>();
    public Long getDeptId()
    {
    /**
     * 部门编码
     */
    @ApiModelProperty("部门编码")
    private String deptCode;
    public String getDeptCode() {
        return deptCode;
    }
    public void setDeptCode(String deptCode) {
        this.deptCode = deptCode;
    }
    public Long getDeptId() {
        return deptId;
    }
    public void setDeptId(Long deptId)
    {
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
    public Long getParentId()
    {
    public Long getParentId() {
        return parentId;
    }
    public void setParentId(Long parentId)
    {
    public void setParentId(Long parentId) {
        this.parentId = parentId;
    }
    public String getAncestors()
    {
    public String getAncestors() {
        return ancestors;
    }
    public void setAncestors(String ancestors)
    {
    public void setAncestors(String ancestors) {
        this.ancestors = ancestors;
    }
    @NotBlank(message = "部门名称不能为空")
    @Size(min = 0, max = 30, message = "部门名称长度不能超过30个字符")
    public String getDeptName()
    {
    public String getDeptName() {
        return deptName;
    }
    public void setDeptName(String deptName)
    {
    public void setDeptName(String deptName) {
        this.deptName = deptName;
    }
    @NotNull(message = "显示顺序不能为空")
    public Integer getOrderNum()
    {
    public Integer getOrderNum() {
        return orderNum;
    }
    public void setOrderNum(Integer orderNum)
    {
    public void setOrderNum(Integer orderNum) {
        this.orderNum = orderNum;
    }
    public String getLeader()
    {
    public String getLeader() {
        return leader;
    }
    public void setLeader(String leader)
    {
    public void setLeader(String leader) {
        this.leader = leader;
    }
    @Size(min = 0, max = 11, message = "联系电话长度不能超过11个字符")
    public String getPhone()
    {
    public String getPhone() {
        return phone;
    }
    public void setPhone(String phone)
    {
    public void setPhone(String phone) {
        this.phone = phone;
    }
    @Email(message = "邮箱格式不正确")
    @Size(min = 0, max = 50, message = "邮箱长度不能超过50个字符")
    public String getEmail()
    {
    public String getEmail() {
        return email;
    }
    public void setEmail(String email)
    {
    public void setEmail(String email) {
        this.email = email;
    }
    public String getStatus()
    {
    public String getStatus() {
        return status;
    }
    public void setStatus(String status)
    {
    public void setStatus(String status) {
        this.status = status;
    }
    public String getDelFlag()
    {
    public String getDelFlag() {
        return delFlag;
    }
    public void setDelFlag(String delFlag)
    {
    public void setDelFlag(String delFlag) {
        this.delFlag = delFlag;
    }
    public String getParentName()
    {
    public String getParentName() {
        return parentName;
    }
    public void setParentName(String parentName)
    {
    public void setParentName(String parentName) {
        this.parentName = parentName;
    }
    public List<SysDept> getChildren()
    {
    public List<SysDept> getChildren() {
        return children;
    }
    public void setChildren(List<SysDept> children)
    {
    public void setChildren(List<SysDept> children) {
        this.children = children;
    }
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("deptId", getDeptId())
            .append("parentId", getParentId())
            .append("ancestors", getAncestors())
            .append("deptName", getDeptName())
            .append("orderNum", getOrderNum())
            .append("leader", getLeader())
            .append("phone", getPhone())
            .append("email", getEmail())
            .append("status", getStatus())
            .append("delFlag", getDelFlag())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .toString();
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("deptId", getDeptId()).append("parentId", getParentId()).append("ancestors", getAncestors()).append("deptName", getDeptName()).append("orderNum", getOrderNum()).append("leader", getLeader()).append("phone", getPhone()).append("email", getEmail()).append("status", getStatus()).append("delFlag", getDelFlag()).append("createBy", getCreateBy()).append("createTime", getCreateTime()).append("updateBy", getUpdateBy()).append("updateTime", getUpdateTime()).toString();
    }
}