package com.example.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.example.common.BaseEntity;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@TableName("sys_department")
|
public class Department extends BaseEntity {
|
|
private String deptCode;
|
|
private String deptName;
|
|
private String parentCode;
|
|
private Integer sortOrder;
|
|
private String description;
|
|
private Integer status;
|
}
|