package com.gkhy.safePlatform.account.entity.enterprise; import com.baomidou.mybatisplus.annotation.TableName; import com.gkhy.safePlatform.account.enums.DepartmentStatusEnum; import java.io.Serializable; import java.util.Date; @TableName("sys_department") public class DepartmentInfo implements Serializable { private static final long serialVersionUID = 711108566363980593L; private Long id; private String name; private String code; private String info; private Byte status; private Byte level; private Long parentId; private Date gmtCreate; private Date gmtModified; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getInfo() { return info; } public void setInfo(String info) { this.info = info; } public Byte getStatus() { return status; } public void setStatus(Byte status) { this.status = status; } public Long getParentId() { return parentId; } public void setParentId(Long parentId) { this.parentId = parentId; } public Date getGmtCreate() { return gmtCreate; } public void setGmtCreate(Date gmtCreate) { this.gmtCreate = gmtCreate; } public Date getGmtModified() { return gmtModified; } public void setGmtModified(Date gmtModified) { this.gmtModified = gmtModified; } public Byte getLevel() { return level; } public void setLevel(Byte level) { this.level = level; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } }