
com.fincatto.documentofiscal.mdfe3.classes.nota.MDFInfoProdutoPredominanteInfLotacaoLocalDescarrega Maven / Gradle / Ivy
package com.fincatto.documentofiscal.mdfe3.classes.nota;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
import com.fincatto.documentofiscal.DFBase;
/**
* Created by Edivaldo Merlo Stens on 29/06/20.
* Informações da localização do descarregamento do MDF-e de carga lotação
*/
@Root(name = "infLocalDescarrega")
@Namespace(reference = "http://www.portalfiscal.inf.br/mdfe")
public class MDFInfoProdutoPredominanteInfLotacaoLocalDescarrega extends DFBase {
private static final long serialVersionUID = -5711457880712720488L;
@Element(name = "CEP", required = false)
private String CEP;
@Element(name = "latitude", required = false)
private Float latitude;
@Element(name = "longitude", required = false)
private Float longitude;
public String getCEP() {
return CEP;
}
public void setCEP(String CEP) {
this.CEP = CEP;
}
public Float getLatitude() {
return latitude;
}
public void setLatitude(Float latitude) {
this.latitude = latitude;
}
public Float getLongitude() {
return longitude;
}
public void setLongitude(Float longitude) {
this.longitude = longitude;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy