196 lines
4.9 KiB
Java
196 lines
4.9 KiB
Java
|
|
package com.rjconsultores.hstcajservice.ws;
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
import javax.xml.bind.annotation.XmlType;
|
|
|
|
|
|
/**
|
|
* <p>Java class for exportaIntegracaoCadEstadoWS complex type.
|
|
*
|
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
|
*
|
|
* <pre>
|
|
* <complexType name="exportaIntegracaoCadEstadoWS">
|
|
* <complexContent>
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
* <sequence>
|
|
* <element name="codEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="codServidorEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="descEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="siglaEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="taxaEmbarqueEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="valorICMSEstado" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* </sequence>
|
|
* </restriction>
|
|
* </complexContent>
|
|
* </complexType>
|
|
* </pre>
|
|
*
|
|
*
|
|
*/
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlType(name = "exportaIntegracaoCadEstadoWS", propOrder = {
|
|
"codEstado",
|
|
"codServidorEstado",
|
|
"descEstado",
|
|
"siglaEstado",
|
|
"taxaEmbarqueEstado",
|
|
"valorICMSEstado"
|
|
})
|
|
public class ExportaIntegracaoCadEstadoWS {
|
|
|
|
protected String codEstado;
|
|
protected String codServidorEstado;
|
|
protected String descEstado;
|
|
protected String siglaEstado;
|
|
protected String taxaEmbarqueEstado;
|
|
protected String valorICMSEstado;
|
|
|
|
/**
|
|
* Gets the value of the codEstado property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getCodEstado() {
|
|
return codEstado;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the codEstado property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setCodEstado(String value) {
|
|
this.codEstado = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the codServidorEstado property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getCodServidorEstado() {
|
|
return codServidorEstado;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the codServidorEstado property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setCodServidorEstado(String value) {
|
|
this.codServidorEstado = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the descEstado property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getDescEstado() {
|
|
return descEstado;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the descEstado property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setDescEstado(String value) {
|
|
this.descEstado = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the siglaEstado property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getSiglaEstado() {
|
|
return siglaEstado;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the siglaEstado property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setSiglaEstado(String value) {
|
|
this.siglaEstado = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the taxaEmbarqueEstado property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getTaxaEmbarqueEstado() {
|
|
return taxaEmbarqueEstado;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the taxaEmbarqueEstado property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setTaxaEmbarqueEstado(String value) {
|
|
this.taxaEmbarqueEstado = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the valorICMSEstado property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getValorICMSEstado() {
|
|
return valorICMSEstado;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the valorICMSEstado property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setValorICMSEstado(String value) {
|
|
this.valorICMSEstado = value;
|
|
}
|
|
|
|
}
|