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 takePlace complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="takePlace"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="placeCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="placeId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="placeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "takePlace", propOrder = { "placeCode", "placeId", "placeName" }) public class TakePlace { protected String placeCode; protected String placeId; protected String placeName; /** * Gets the value of the placeCode property. * * @return * possible object is * {@link String } * */ public String getPlaceCode() { return placeCode; } /** * Sets the value of the placeCode property. * * @param value * allowed object is * {@link String } * */ public void setPlaceCode(String value) { this.placeCode = value; } /** * Gets the value of the placeId property. * * @return * possible object is * {@link String } * */ public String getPlaceId() { return placeId; } /** * Sets the value of the placeId property. * * @param value * allowed object is * {@link String } * */ public void setPlaceId(String value) { this.placeId = value; } /** * Gets the value of the placeName property. * * @return * possible object is * {@link String } * */ public String getPlaceName() { return placeName; } /** * Sets the value of the placeName property. * * @param value * allowed object is * {@link String } * */ public void setPlaceName(String value) { this.placeName = value; } }