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("cityId")
|
private Integer cityId;
|
/**
|
* 经度
|
*/
|
@TableField("lon")
|
private Double lon;
|
/**
|
* 纬度
|
*/
|
@TableField("lat")
|
private Double lat;
|
/**
|
* 是否需要网约车资格(1:是,2:否)
|
*/
|
@TableField("isQualifications")
|
private Integer isQualifications;
|
|
public Integer getCityId() {
|
return cityId;
|
}
|
|
public void setCityId(Integer cityId) {
|
this.cityId = cityId;
|
}
|
|
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;
|
}
|
|
public Integer getIsQualifications() {
|
return isQualifications;
|
}
|
|
public void setIsQualifications(Integer isQualifications) {
|
this.isQualifications = isQualifications;
|
}
|
|
@Override
|
public String toString() {
|
return "OpenCity{" +
|
"cityId=" + cityId +
|
", lon=" + lon +
|
", lat=" + lat +
|
", isQualifications=" + isQualifications +
|
'}';
|
}
|
}
|