package com.stylefeng.guns.modular.system.model;
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
|
/**
|
* 开通城市
|
*/
|
@TableName("t_open_city")
|
public class OpenCity extends BaseBean {
|
/**
|
* 城市编号(行政编号)
|
*/
|
@TableField("code")
|
private String code;
|
/**
|
* 经度
|
*/
|
@TableField("lon")
|
private Double lon;
|
/**
|
* 纬度
|
*/
|
@TableField("lat")
|
private Double lat;
|
/**
|
* 是否需要网约车资格(1:是,2:否)
|
*/
|
@TableField("isQualifications")
|
private Integer isQualifications;
|
/**
|
* 省名称
|
*/
|
@TableField("areaName")
|
private String areaName;
|
/**
|
* 市名称
|
*/
|
@TableField("cityName")
|
private String cityName;
|
/**
|
* 区县名称
|
*/
|
@TableField("provinceName")
|
private String provinceName;
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public Integer getIsQualifications() {
|
return isQualifications;
|
}
|
|
public void setIsQualifications(Integer isQualifications) {
|
this.isQualifications = isQualifications;
|
}
|
|
public String getAreaName() {
|
return areaName;
|
}
|
|
public void setAreaName(String areaName) {
|
this.areaName = areaName;
|
}
|
|
public String getCityName() {
|
return cityName;
|
}
|
|
public void setCityName(String cityName) {
|
this.cityName = cityName;
|
}
|
|
public String getProvinceName() {
|
return provinceName;
|
}
|
|
public void setProvinceName(String provinceName) {
|
this.provinceName = provinceName;
|
}
|
|
public Double getLon() {
|
return lon;
|
}
|
|
public void setLon(Double lon) {
|
this.lon = lon;
|
}
|
|
public Double getLat() {
|
return lat;
|
}
|
|
public void setLat(Double lat) {
|
this.lat = lat;
|
}
|
|
@Override
|
public String toString() {
|
return "OpenCity{" +
|
"code='" + code + '\'' +
|
", lon=" + lon +
|
", lat=" + lat +
|
", isQualifications=" + isQualifications +
|
", areaName='" + areaName + '\'' +
|
", cityName='" + cityName + '\'' +
|
", provinceName='" + provinceName + '\'' +
|
'}';
|
}
|
}
|