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

com.aiwiown.face.domain.ocrid.Coordinate Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
package com.aiwiown.face.domain.ocrid;

import com.aiwiown.face.ApiObject;
import com.aiwiown.face.internal.mapping.ApiField;

import java.math.BigDecimal;

/**
 * @ClassName : Coordinate
 * @Description :
 * @Author : dbin0123
 * @Date: 2020-03-15 19:26
 */
public class Coordinate extends ApiObject {

    private static final long serialVersionUID = 1201559080532739583L;

    @ApiField("x")
    private BigDecimal x;
    @ApiField("y")
    private BigDecimal y;

    public BigDecimal getX() {
        return x;
    }

    public void setX(BigDecimal x) {
        this.x = x;
    }

    public BigDecimal getY() {
        return y;
    }

    public void setY(BigDecimal y) {
        this.y = y;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy