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;
|
|
|
}
|