package cn.stylefeng.guns.sys.modular.system.model;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 字典信息
|
*
|
* @author fengshuonan
|
* @Date 2018/12/8 18:16
|
*/
|
@Data
|
public class DeptDto implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
private Long deptId;
|
/**
|
* 父部门id
|
*/
|
private Long pid;
|
/**
|
* 父部门名称
|
*/
|
private String pName;
|
/**
|
* 简称
|
*/
|
private String simpleName;
|
/**
|
* 全称
|
*/
|
private String fullName;
|
|
public static long getSerialVersionUID() {
|
return serialVersionUID;
|
}
|
|
public Long getDeptId() {
|
return deptId;
|
}
|
|
public void setDeptId(Long deptId) {
|
this.deptId = deptId;
|
}
|
|
public Long getPid() {
|
return pid;
|
}
|
|
public void setPid(Long pid) {
|
this.pid = pid;
|
}
|
|
public String getPName() {
|
return pName;
|
}
|
|
public void setPName(String pName) {
|
this.pName = pName;
|
}
|
|
public String getSimpleName() {
|
return simpleName;
|
}
|
|
public void setSimpleName(String simpleName) {
|
this.simpleName = simpleName;
|
}
|
|
public String getFullName() {
|
return fullName;
|
}
|
|
public void setFullName(String fullName) {
|
this.fullName = fullName;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public Integer getSort() {
|
return sort;
|
}
|
|
public void setSort(Integer sort) {
|
this.sort = sort;
|
}
|
|
/**
|
* 描述
|
*/
|
private String description;
|
/**
|
* 排序
|
*/
|
private Integer sort;
|
}
|