zhizhijie
13 小时以前 fbc1c1590e7e81a550beb50c7cf65c663c7c5b41
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
}