package com.topsun.posclient.finance.webservice; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>saveStorePayResponse complex type�� Java �ࡣ * * <p>����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� * * <pre> * <complexType name="saveStorePayResponse"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="syncData" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "saveStorePayResponse", propOrder = { "syncData" }) public class SaveStorePayResponse { protected String syncData; /** * ��ȡsyncData���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getSyncData() { return syncData; } /** * ����syncData���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setSyncData(String value) { this.syncData = value; } }