72 lines
1.1 KiB
Java
72 lines
1.1 KiB
Java
package com.ruoyi.cai.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* 地区对象 cai_area
|
|
*
|
|
* @author 77
|
|
* @date 2023-12-23
|
|
*/
|
|
@Data
|
|
@TableName("cai_area")
|
|
public class CaiArea implements Serializable {
|
|
|
|
private static final long serialVersionUID=1L;
|
|
|
|
/**
|
|
* ID
|
|
*/
|
|
@TableId(value = "id")
|
|
private Long id;
|
|
/**
|
|
* 父id
|
|
*/
|
|
private Long pid;
|
|
/**
|
|
* 简称
|
|
*/
|
|
private String shortname;
|
|
/**
|
|
* 名称
|
|
*/
|
|
private String name;
|
|
/**
|
|
* 全称
|
|
*/
|
|
private String mergename;
|
|
/**
|
|
* 层级 0 1 2 省市区县
|
|
*/
|
|
private Integer level;
|
|
/**
|
|
* 拼音
|
|
*/
|
|
private String pinyin;
|
|
/**
|
|
* 长途区号
|
|
*/
|
|
private String code;
|
|
/**
|
|
* 邮编
|
|
*/
|
|
private String zip;
|
|
/**
|
|
* 首字母
|
|
*/
|
|
private String first;
|
|
/**
|
|
* 经度
|
|
*/
|
|
private String lng;
|
|
/**
|
|
* 纬度
|
|
*/
|
|
private String lat;
|
|
|
|
}
|