CarPark.java 978 Bytes
package com.bsth.entity;

import com.bsth.util.geo.Polygon;

/**
 * 停车场
 */
public class CarPark {

    /**
     * 停车场编码
     */
    private String code;

    /**
     * 停车场名称
     */
    private String name;

    /**
     * 多边形电子围栏
     */
    private Polygon polygon;

    private String polygonStr;

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Polygon getPolygon() {
        return polygon;
    }

    public void setPolygon(Polygon polygon) {
        this.polygon = polygon;
    }

    public String getPolygonStr() {
        return polygonStr;
    }

    public void setPolygonStr(String polygonStr) {
        this.polygonStr = polygonStr;
    }
}