126 lines
2.2 KiB
Java
126 lines
2.2 KiB
Java
package com.mini.capi.biz.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
|
import java.time.LocalDateTime;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
/**
|
|
* <p>
|
|
* 地市信息表
|
|
* </p>
|
|
*
|
|
* @author gaoxq
|
|
* @since 2025-08-25
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
@TableName("biz_municipalities")
|
|
public class Municipalities implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private String id;
|
|
|
|
/**
|
|
* 记录时间
|
|
*/
|
|
@TableField("create_time")
|
|
private LocalDateTime createTime;
|
|
|
|
/**
|
|
* 省份名称
|
|
*/
|
|
@TableField("province_name")
|
|
private String provinceName;
|
|
|
|
/**
|
|
* 市区名称
|
|
*/
|
|
@TableField("city_name")
|
|
private String cityName;
|
|
|
|
/**
|
|
* 县区名称
|
|
*/
|
|
@TableField("county_name")
|
|
private String countyName;
|
|
|
|
/**
|
|
* 省份编码
|
|
*/
|
|
@TableField("province_code")
|
|
private Long provinceCode;
|
|
|
|
/**
|
|
* 市区编码
|
|
*/
|
|
@TableField("city_code")
|
|
private String cityCode;
|
|
|
|
/**
|
|
* 县区编码
|
|
*/
|
|
@TableField("county_code")
|
|
private String countyCode;
|
|
|
|
/**
|
|
* 市县级别
|
|
*/
|
|
@TableField("city_type")
|
|
private Integer cityType;
|
|
|
|
/**
|
|
* 市区区号
|
|
*/
|
|
@TableField("area_code")
|
|
private String areaCode;
|
|
|
|
/**
|
|
* 街道名称
|
|
*/
|
|
@TableField("town_name")
|
|
private String townName;
|
|
|
|
/**
|
|
* 街道编号
|
|
*/
|
|
@TableField("town_code")
|
|
private String townCode;
|
|
|
|
/**
|
|
* 社区名称
|
|
*/
|
|
@TableField("village_name")
|
|
private String villageName;
|
|
|
|
/**
|
|
* 社区编号
|
|
*/
|
|
@TableField("village_code")
|
|
private String villageCode;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
@TableField("update_time")
|
|
private LocalDateTime updateTime;
|
|
|
|
/**
|
|
* 数据状态
|
|
*/
|
|
@TableField("data_status")
|
|
private String dataStatus;
|
|
|
|
/**
|
|
* 租户id
|
|
*/
|
|
@TableField("f_tenant_id")
|
|
private String fTenantId;
|
|
}
|