All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.luna.baidu.dto.location.LocationDO Maven / Gradle / Ivy

There is a newer version: 2.1.0-RELEASE
Show newest version
package com.luna.baidu.dto.location;

/**
 * @author Luna@win10
 * @date 2020/4/29 14:37
 */
public class LocationDO {

    private double top;

    private double left;

    private double width;

    private double height;

    public double getTop() {
        return top;
    }

    public void setTop(double top) {
        this.top = top;
    }

    public double getLeft() {
        return left;
    }

    public void setLeft(double left) {
        this.left = left;
    }

    public double getWidth() {
        return width;
    }

    public void setWidth(double width) {
        this.width = width;
    }

    public double getHeight() {
        return height;
    }

    public void setHeight(double height) {
        this.height = height;
    }

    @Override
    public String toString() {
        return "Body{" +
            "top=" + top +
            ", left=" + left +
            ", width=" + width +
            ", height=" + height +
            '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy