45 lines
755 B
Java
45 lines
755 B
Java
|
package net.shapelight.modules.vo;
|
|||
|
|
|||
|
import io.swagger.annotations.ApiModelProperty;
|
|||
|
import lombok.Data;
|
|||
|
|
|||
|
import java.io.Serializable;
|
|||
|
import java.util.List;
|
|||
|
|
|||
|
/**
|
|||
|
* 区域管理
|
|||
|
*
|
|||
|
*/
|
|||
|
@Data
|
|||
|
public class TenCelldeptWeVo implements Serializable {
|
|||
|
private static final long serialVersionUID = 1L;
|
|||
|
|
|||
|
/**
|
|||
|
* 区域id
|
|||
|
*/
|
|||
|
@ApiModelProperty("部门id")
|
|||
|
private String id;
|
|||
|
/**
|
|||
|
* 上级区域ID,一级区域为0
|
|||
|
*/
|
|||
|
@ApiModelProperty("上级ID")
|
|||
|
private String parentId;
|
|||
|
/**
|
|||
|
* 区域名称
|
|||
|
*/
|
|||
|
@ApiModelProperty("名称")
|
|||
|
private String label;
|
|||
|
/**
|
|||
|
* 上级部门名称
|
|||
|
*/
|
|||
|
@ApiModelProperty("上级名称")
|
|||
|
private String parentName;
|
|||
|
/**
|
|||
|
* 子区域
|
|||
|
*
|
|||
|
*/
|
|||
|
@ApiModelProperty("子部门")
|
|||
|
private List<TenCelldeptWeVo> children;
|
|||
|
|
|||
|
}
|