package org.cneng.httpclient; import java.util.Date; /** * 发票数据 * * @author XiongNeng * @version 1.0 * @since 2015/7/6 */ public class Invoice { private String InvNo; private Date InvDate; private String InvKind; private String Seller; private String SellerTaxCode; private String SellerAccounts; private String SellerAddress; private Double Amount; private String Buyer; private String BuyTaxCode; private String BuyerAccounts; private String BuyerAddress; private String Bszt; private String KPR; private String ListFlag; private Integer MachineNum; private String Memo; private Float Tax; private Float TaxRate; private String TypeCode; private String WareName; private String Zfbz; /** * Gets ListFlag. * * @return Value of ListFlag. */ public String getListFlag() { return ListFlag; } /** * Sets new SellerAccounts. * * @param SellerAccounts New value of SellerAccounts. */ public void setSellerAccounts(String SellerAccounts) { this.SellerAccounts = SellerAccounts; } /** * Sets new Seller. * * @param Seller New value of Seller. */ public void setSeller(String Seller) { this.Seller = Seller; } /** * Sets new BuyerAccounts. * * @param BuyerAccounts New value of BuyerAccounts. */ public void setBuyerAccounts(String BuyerAccounts) { this.BuyerAccounts = BuyerAccounts; } /** * Gets BuyerAddress. * * @return Value of BuyerAddress. */ public String getBuyerAddress() { return BuyerAddress; } /** * Sets new WareName. * * @param WareName New value of WareName. */ public void setWareName(String WareName) { this.WareName = WareName; } /** * Gets TaxRate. * * @return Value of TaxRate. */ public Float getTaxRate() { return TaxRate; } /** * Sets new Buyer. * * @param Buyer New value of Buyer. */ public void setBuyer(String Buyer) { this.Buyer = Buyer; } /** * Sets new Tax. * * @param Tax New value of Tax. */ public void setTax(Float Tax) { this.Tax = Tax; } /** * Gets InvKind. * * @return Value of InvKind. */ public String getInvKind() { return InvKind; } /** * Sets new SellerTaxCode. * * @param SellerTaxCode New value of SellerTaxCode. */ public void setSellerTaxCode(String SellerTaxCode) { this.SellerTaxCode = SellerTaxCode; } /** * Gets BuyTaxCode. * * @return Value of BuyTaxCode. */ public String getBuyTaxCode() { return BuyTaxCode; } /** * Gets TypeCode. * * @return Value of TypeCode. */ public String getTypeCode() { return TypeCode; } /** * Sets new ListFlag. * * @param ListFlag New value of ListFlag. */ public void setListFlag(String ListFlag) { this.ListFlag = ListFlag; } /** * Gets SellerTaxCode. * * @return Value of SellerTaxCode. */ public String getSellerTaxCode() { return SellerTaxCode; } /** * Gets InvNo. * * @return Value of InvNo. */ public String getInvNo() { return InvNo; } /** * Gets Buyer. * * @return Value of Buyer. */ public String getBuyer() { return Buyer; } /** * Gets Seller. * * @return Value of Seller. */ public String getSeller() { return Seller; } /** * Sets new TaxRate. * * @param TaxRate New value of TaxRate. */ public void setTaxRate(Float TaxRate) { this.TaxRate = TaxRate; } /** * Gets Zfbz. * * @return Value of Zfbz. */ public String getZfbz() { return Zfbz; } /** * Gets MachineNum. * * @return Value of MachineNum. */ public Integer getMachineNum() { return MachineNum; } /** * Gets SellerAccounts. * * @return Value of SellerAccounts. */ public String getSellerAccounts() { return SellerAccounts; } /** * Gets Tax. * * @return Value of Tax. */ public Float getTax() { return Tax; } /** * Sets new BuyTaxCode. * * @param BuyTaxCode New value of BuyTaxCode. */ public void setBuyTaxCode(String BuyTaxCode) { this.BuyTaxCode = BuyTaxCode; } /** * Sets new Amount. * * @param Amount New value of Amount. */ public void setAmount(Double Amount) { this.Amount = Amount; } /** * Gets InvDate. * * @return Value of InvDate. */ public Date getInvDate() { return InvDate; } /** * Sets new MachineNum. * * @param MachineNum New value of MachineNum. */ public void setMachineNum(Integer MachineNum) { this.MachineNum = MachineNum; } /** * Sets new TypeCode. * * @param TypeCode New value of TypeCode. */ public void setTypeCode(String TypeCode) { this.TypeCode = TypeCode; } /** * Sets new Bszt. * * @param Bszt New value of Bszt. */ public void setBszt(String Bszt) { this.Bszt = Bszt; } /** * Sets new SellerAddress. * * @param SellerAddress New value of SellerAddress. */ public void setSellerAddress(String SellerAddress) { this.SellerAddress = SellerAddress; } /** * Sets new InvNo. * * @param InvNo New value of InvNo. */ public void setInvNo(String InvNo) { this.InvNo = InvNo; } /** * Sets new KPR. * * @param KPR New value of KPR. */ public void setKPR(String KPR) { this.KPR = KPR; } /** * Gets BuyerAccounts. * * @return Value of BuyerAccounts. */ public String getBuyerAccounts() { return BuyerAccounts; } /** * Sets new InvDate. * * @param InvDate New value of InvDate. */ public void setInvDate(Date InvDate) { this.InvDate = InvDate; } /** * Sets new Memo. * * @param Memo New value of Memo. */ public void setMemo(String Memo) { this.Memo = Memo; } /** * Gets KPR. * * @return Value of KPR. */ public String getKPR() { return KPR; } /** * Sets new Zfbz. * * @param Zfbz New value of Zfbz. */ public void setZfbz(String Zfbz) { this.Zfbz = Zfbz; } /** * Gets Bszt. * * @return Value of Bszt. */ public String getBszt() { return Bszt; } /** * Sets new InvKind. * * @param InvKind New value of InvKind. */ public void setInvKind(String InvKind) { this.InvKind = InvKind; } /** * Gets SellerAddress. * * @return Value of SellerAddress. */ public String getSellerAddress() { return SellerAddress; } /** * Gets Memo. * * @return Value of Memo. */ public String getMemo() { return Memo; } /** * Sets new BuyerAddress. * * @param BuyerAddress New value of BuyerAddress. */ public void setBuyerAddress(String BuyerAddress) { this.BuyerAddress = BuyerAddress; } /** * Gets Amount. * * @return Value of Amount. */ public Double getAmount() { return Amount; } /** * Gets WareName. * * @return Value of WareName. */ public String getWareName() { return WareName; } }