package com.mzl.flower.dto.response.district; import lombok.Data; import java.util.List; @Data public class DistrictVO { private String id; /** * 名称 */ private String name; /** * 城市编码 */ private String citycode; /** * 区域编码 */ private String adcode; /** * 行政区域边界坐标点 */ private String polyline; /** * 区域中心点 */ private String center; /** * 行政区划级别(country国家 province 省份 city市 district 区县 street街道) */ private String level; /** * 父id */ private String parentId; List children; }