package com.trafficaudit.system.entity; import com.baomidou.mybatisplus.annotation.*; import lombok.Data; @Data @TableName("sys_dept") public class Dept { @TableId(type = IdType.AUTO) private Long id; private String deptName; private String deptCode; private Long parentId; private Integer deptLevel; }