cqyt/shapelight-admin/src/main/java/net/shapelight/modules/vo/TenCelldeptWeVo.java

45 lines
755 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}