cloudroam
2025-03-31 f060439c675cb9185252cfc8f034853290863c62
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
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_tengxun")
public class DistrictTengxunDO extends BaseEntity {
 
 
    /**
     * 名称
     */
    private String name;
 
    /**
     * 城市编码
     */
    private String fullname;
 
    /**
     * 区域编码
     */
    private String code;
 
 
    private Integer level;
 
    /**
     * 父id
     */
    private String parentId;
 
 
}