1
zhujie
5 天以前 ec15861e14c66c38b1a8f5fffc6975d7da6c315c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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;
 
 
}