package com.mzl.flower.entity.district;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.mzl.flower.base.BaseEntity;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
/**
|
* 对接高德地图行政区划
|
*
|
* @author @TaoJie
|
* @since 2024-12-19
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@Accessors(chain = true)
|
@TableName("t_district")
|
public class DistrictDO extends BaseEntity {
|
|
|
/**
|
* 名称
|
*/
|
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;
|
|
|
}
|