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>payRecord complex type�� Java �ࡣ * * <p>����ģʽƬ��ָ�������ڴ����е�Ԥ�����ݡ� * * <pre> * <complexType name="payRecord"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="account" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="amount" type="{http://www.w3.org/2001/XMLSchema}double"/> * <element name="approve" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="approveDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="bankName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="payDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="payer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="remark" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "payRecord", propOrder = { "account", "amount", "approve", "approveDate", "bankName", "id", "payDate", "payer", "remark" }) public class PayRecord { protected String account; protected double amount; protected String approve; protected String approveDate; protected String bankName; protected String id; protected String payDate; protected String payer; protected String remark; /** * ��ȡaccount���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getAccount() { return account; } /** * ����account���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setAccount(String value) { this.account = value; } /** * ��ȡamount���Ե�ֵ�� * */ public double getAmount() { return amount; } /** * ����amount���Ե�ֵ�� * */ public void setAmount(double value) { this.amount = value; } /** * ��ȡapprove���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getApprove() { return approve; } /** * ����approve���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setApprove(String value) { this.approve = value; } /** * ��ȡapproveDate���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getApproveDate() { return approveDate; } /** * ����approveDate���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setApproveDate(String value) { this.approveDate = value; } /** * ��ȡbankName���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getBankName() { return bankName; } /** * ����bankName���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setBankName(String value) { this.bankName = value; } /** * ��ȡid���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * ����id���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * ��ȡpayDate���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getPayDate() { return payDate; } /** * ����payDate���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setPayDate(String value) { this.payDate = value; } /** * ��ȡpayer���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getPayer() { return payer; } /** * ����payer���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setPayer(String value) { this.payer = value; } /** * ��ȡremark���Ե�ֵ�� * * @return * possible object is * {@link String } * */ public String getRemark() { return remark; } /** * ����remark���Ե�ֵ�� * * @param value * allowed object is * {@link String } * */ public void setRemark(String value) { this.remark = value; } }