46 lines
892 B
Java
46 lines
892 B
Java
package com.unissense.sip.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
@Data
|
|
@TableName("sys_dept")
|
|
public class SysDept {
|
|
|
|
@TableId(type = IdType.AUTO)
|
|
private Long deptId;
|
|
|
|
private Long parentId;
|
|
|
|
private String deptName;
|
|
|
|
private Integer orderNum;
|
|
|
|
private String leader;
|
|
|
|
private String phone;
|
|
|
|
private String email;
|
|
|
|
private Integer status;
|
|
|
|
private String deptCode;
|
|
|
|
private LocalDateTime deleteAt;
|
|
|
|
private LocalDateTime createAt;
|
|
|
|
private String createBy;
|
|
|
|
private LocalDateTime createTime;
|
|
|
|
private String updateBy;
|
|
|
|
private LocalDateTime updateTime;
|
|
|
|
private String remark;
|
|
} |