广州市综治平台后端
xusd
7 days ago cbceb95bdd6713acfc2ce560055170ccfa5b7e89
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cn.huge.module.kind.domain.bo;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * @author zhouxiantao
 * @create 2024-10-16 11:03
 */
@Data
public class AreaBO {
    private String label;// 名称
    private String value;// 编码
    private String level;//1-市,2-区,3-街道,4-村居
    private String parentId;//父类编码
    private String sort;//排序
    private List<AreaBO> children;//子类集合
}