package net.tooan.ynpay.order.eadd; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for serialArea complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="serialArea"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="areaCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="areaId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="areaName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "serialArea", propOrder = { "areaCode", "areaId", "areaName" }) public class SerialArea { protected String areaCode; protected String areaId; protected String areaName; /** * Gets the value of the areaCode property. * * @return * possible object is * {@link String } * */ public String getAreaCode() { return areaCode; } /** * Sets the value of the areaCode property. * * @param value * allowed object is * {@link String } * */ public void setAreaCode(String value) { this.areaCode = value; } /** * Gets the value of the areaId property. * * @return * possible object is * {@link String } * */ public String getAreaId() { return areaId; } /** * Sets the value of the areaId property. * * @param value * allowed object is * {@link String } * */ public void setAreaId(String value) { this.areaId = value; } /** * Gets the value of the areaName property. * * @return * possible object is * {@link String } * */ public String getAreaName() { return areaName; } /** * Sets the value of the areaName property. * * @param value * allowed object is * {@link String } * */ public void setAreaName(String value) { this.areaName = value; } }