puzhibing
2022-09-12 7da4caa40befd523033b8a1d01246ae468674680
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
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 +
                '}';
    }
}