BaseStationResponse.java 692 Bytes
package com.ruoyi.system.domain.response;

import lombok.Data;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@Data
@XmlRootElement(name = "response")
@XmlAccessorType(value = XmlAccessType.FIELD)
public class BaseStationResponse {
    @XmlElement(name="errcode")
    private String errcode;
    @XmlElement(name="lat")
    private String lat = "00.000000";
    @XmlElement(name="lon")
    private String lon = "000.000000";
    @XmlElement(name="radius")
    private String radius;
    @XmlElement(name="address")
    private String address;
}