GeoStation.java 2.94 KB
package com.bsth.entity.geo_data;

import com.fasterxml.jackson.annotation.JsonIgnore;

import java.util.List;

/**
 * Created by panzhao on 2017/12/7.
 */
public class GeoStation {

    private int id;

    private String stationName;

    private String stationRouteCode;

    private String lineCode;

    private Integer directions;

    private String stationCode;

    private String stationMark;

    private Integer versions;

    private Float gLonx;

    private Float gLaty;

    @JsonIgnore
    private String gPolygonGrid;

    private List<String> bdCoords;

    private Integer radius;

    private String shapesType;

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getStationName() {
        return stationName;
    }

    public void setStationName(String stationName) {
        this.stationName = stationName;
    }

    public String getStationRouteCode() {
        return stationRouteCode;
    }

    public void setStationRouteCode(String stationRouteCode) {
        this.stationRouteCode = stationRouteCode;
    }

    public String getLineCode() {
        return lineCode;
    }

    public void setLineCode(String lineCode) {
        this.lineCode = lineCode;
    }

    public Integer getDirections() {
        return directions;
    }

    public void setDirections(Integer directions) {
        this.directions = directions;
    }

    public String getStationCode() {
        return stationCode;
    }

    public void setStationCode(String stationCode) {
        this.stationCode = stationCode;
    }

    public String getStationMark() {
        return stationMark;
    }

    public void setStationMark(String stationMark) {
        this.stationMark = stationMark;
    }

    public Float getgLonx() {
        return gLonx;
    }

    public void setgLonx(Float gLonx) {
        this.gLonx = gLonx;
    }

    public Float getgLaty() {
        return gLaty;
    }

    public void setgLaty(Float gLaty) {
        this.gLaty = gLaty;
    }

    public String getgPolygonGrid() {
        return gPolygonGrid;
    }

    public void setgPolygonGrid(String gPolygonGrid) {
        this.gPolygonGrid = gPolygonGrid;
    }

    public Integer getRadius() {
        return radius;
    }

    public void setRadius(Integer radius) {
        this.radius = radius;
    }

    public String getShapesType() {
        return shapesType;
    }

    public void setShapesType(String shapesType) {
        this.shapesType = shapesType;
    }

    public List<String> getBdCoords() {
        return bdCoords;
    }

    public void setBdCoords(List<String> bdCoords) {
        this.bdCoords = bdCoords;
    }

    public Integer getVersions() {
        return versions;
    }

    public void setVersions(Integer versions) {
        this.versions = versions;
    }
}