Browse Source

行程上报-地区

master
Jackwang 4 years ago
parent
commit
63bc74dbce
  1. 106
      epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/CityDTO.java

106
epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/CityDTO.java

@ -0,0 +1,106 @@
/**
* Copyright 2018 人人开源 https://www.renren.io
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* <p>
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <p>
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.elink.esua.epdc.dto;
import lombok.Data;
import java.io.Serializable;
/**
* 2019版全国5级信息表
*
* @author qu qu@elink-cn.com
* @since v1.0.0 2021-10-14
*/
@Data
public class CityDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 区划代码
*/
private Long id;
/**
* 名称
*/
private String name;
/**
* 父级区划代码
*/
private Long pid;
/**
* 省代码
*/
private Long provinceCode;
/**
* 市代码
*/
private Long cityCode;
/**
* 区代码
*/
private Long areaCode;
/**
* 街道代码
*/
private Long streetCode;
/**
* 居委/社区
*/
private Long committeeCode;
/**
* 简称
*/
private String shortName;
/**
* 区号
*/
private String cityNo;
/**
* 纬度
*/
private String lat;
/**
* 经度
*/
private String lng;
/**
* 排序
*/
private Integer sort;
/**
* 级别: 0-国家 ,1-, 2-, 3-/, 4-/, 5-社区/居委
*/
private Integer level;
}
Loading…
Cancel
Save