27 lines
448 B
Java
27 lines
448 B
Java
package io.dataease.base.domain;
|
|
|
|
import java.io.Serializable;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class SysDept implements Serializable {
|
|
private Long deptId;
|
|
|
|
private Long pid;
|
|
|
|
private Integer subCount;
|
|
|
|
private String name;
|
|
|
|
private Integer deptSort;
|
|
|
|
private String createBy;
|
|
|
|
private String updateBy;
|
|
|
|
private Long createTime;
|
|
|
|
private Long updateTime;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
} |