package pwc.taxtech.atms.vat.entity;

import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;

/**
 *
 * This class was generated by MyBatis Generator.
 * This class corresponds to the database table InputVATInvoice
 *
 * @mbg.generated do_not_delete_during_merge
 */
public class InputVATInvoice implements Serializable {
    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.ID
     *
     * @mbg.generated
     */
    private String ID;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.PeriodID
     *
     * @mbg.generated
     */
    private Integer periodID;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.InvoiceCode
     *
     * @mbg.generated
     */
    private String invoiceCode;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.InvoiceNumber
     *
     * @mbg.generated
     */
    private String invoiceNumber;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.InvoiceDate
     *
     * @mbg.generated
     */
    private Date invoiceDate;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.SellerTaxNumber
     *
     * @mbg.generated
     */
    private String sellerTaxNumber;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.Amount
     *
     * @mbg.generated
     */
    private BigDecimal amount;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.TaxAmount
     *
     * @mbg.generated
     */
    private BigDecimal taxAmount;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.InvoiceType
     *
     * @mbg.generated
     */
    private Integer invoiceType;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.CertificationResult
     *
     * @mbg.generated
     */
    private String certificationResult;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.CertificationDate
     *
     * @mbg.generated
     */
    private Date certificationDate;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.CreatorID
     *
     * @mbg.generated
     */
    private String creatorID;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.CreateTime
     *
     * @mbg.generated
     */
    private Date createTime;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.Status
     *
     * @mbg.generated
     */
    private Integer status;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.PartAccntedPeriod
     *
     * @mbg.generated
     */
    private Integer partAccntedPeriod;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column InputVATInvoice.AccntedPeriod
     *
     * @mbg.generated
     */
    private Integer accntedPeriod;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database table InputVATInvoice
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.ID
     *
     * @return the value of InputVATInvoice.ID
     *
     * @mbg.generated
     */
    public String getID() {
        return ID;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.ID
     *
     * @param ID the value for InputVATInvoice.ID
     *
     * @mbg.generated
     */
    public void setID(String ID) {
        this.ID = ID == null ? null : ID.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.PeriodID
     *
     * @return the value of InputVATInvoice.PeriodID
     *
     * @mbg.generated
     */
    public Integer getPeriodID() {
        return periodID;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.PeriodID
     *
     * @param periodID the value for InputVATInvoice.PeriodID
     *
     * @mbg.generated
     */
    public void setPeriodID(Integer periodID) {
        this.periodID = periodID;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.InvoiceCode
     *
     * @return the value of InputVATInvoice.InvoiceCode
     *
     * @mbg.generated
     */
    public String getInvoiceCode() {
        return invoiceCode;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.InvoiceCode
     *
     * @param invoiceCode the value for InputVATInvoice.InvoiceCode
     *
     * @mbg.generated
     */
    public void setInvoiceCode(String invoiceCode) {
        this.invoiceCode = invoiceCode == null ? null : invoiceCode.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.InvoiceNumber
     *
     * @return the value of InputVATInvoice.InvoiceNumber
     *
     * @mbg.generated
     */
    public String getInvoiceNumber() {
        return invoiceNumber;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.InvoiceNumber
     *
     * @param invoiceNumber the value for InputVATInvoice.InvoiceNumber
     *
     * @mbg.generated
     */
    public void setInvoiceNumber(String invoiceNumber) {
        this.invoiceNumber = invoiceNumber == null ? null : invoiceNumber.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.InvoiceDate
     *
     * @return the value of InputVATInvoice.InvoiceDate
     *
     * @mbg.generated
     */
    public Date getInvoiceDate() {
        return invoiceDate;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.InvoiceDate
     *
     * @param invoiceDate the value for InputVATInvoice.InvoiceDate
     *
     * @mbg.generated
     */
    public void setInvoiceDate(Date invoiceDate) {
        this.invoiceDate = invoiceDate;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.SellerTaxNumber
     *
     * @return the value of InputVATInvoice.SellerTaxNumber
     *
     * @mbg.generated
     */
    public String getSellerTaxNumber() {
        return sellerTaxNumber;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.SellerTaxNumber
     *
     * @param sellerTaxNumber the value for InputVATInvoice.SellerTaxNumber
     *
     * @mbg.generated
     */
    public void setSellerTaxNumber(String sellerTaxNumber) {
        this.sellerTaxNumber = sellerTaxNumber == null ? null : sellerTaxNumber.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.Amount
     *
     * @return the value of InputVATInvoice.Amount
     *
     * @mbg.generated
     */
    public BigDecimal getAmount() {
        return amount;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.Amount
     *
     * @param amount the value for InputVATInvoice.Amount
     *
     * @mbg.generated
     */
    public void setAmount(BigDecimal amount) {
        this.amount = amount;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.TaxAmount
     *
     * @return the value of InputVATInvoice.TaxAmount
     *
     * @mbg.generated
     */
    public BigDecimal getTaxAmount() {
        return taxAmount;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.TaxAmount
     *
     * @param taxAmount the value for InputVATInvoice.TaxAmount
     *
     * @mbg.generated
     */
    public void setTaxAmount(BigDecimal taxAmount) {
        this.taxAmount = taxAmount;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.InvoiceType
     *
     * @return the value of InputVATInvoice.InvoiceType
     *
     * @mbg.generated
     */
    public Integer getInvoiceType() {
        return invoiceType;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.InvoiceType
     *
     * @param invoiceType the value for InputVATInvoice.InvoiceType
     *
     * @mbg.generated
     */
    public void setInvoiceType(Integer invoiceType) {
        this.invoiceType = invoiceType;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.CertificationResult
     *
     * @return the value of InputVATInvoice.CertificationResult
     *
     * @mbg.generated
     */
    public String getCertificationResult() {
        return certificationResult;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.CertificationResult
     *
     * @param certificationResult the value for InputVATInvoice.CertificationResult
     *
     * @mbg.generated
     */
    public void setCertificationResult(String certificationResult) {
        this.certificationResult = certificationResult == null ? null : certificationResult.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.CertificationDate
     *
     * @return the value of InputVATInvoice.CertificationDate
     *
     * @mbg.generated
     */
    public Date getCertificationDate() {
        return certificationDate;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.CertificationDate
     *
     * @param certificationDate the value for InputVATInvoice.CertificationDate
     *
     * @mbg.generated
     */
    public void setCertificationDate(Date certificationDate) {
        this.certificationDate = certificationDate;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.CreatorID
     *
     * @return the value of InputVATInvoice.CreatorID
     *
     * @mbg.generated
     */
    public String getCreatorID() {
        return creatorID;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.CreatorID
     *
     * @param creatorID the value for InputVATInvoice.CreatorID
     *
     * @mbg.generated
     */
    public void setCreatorID(String creatorID) {
        this.creatorID = creatorID == null ? null : creatorID.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.CreateTime
     *
     * @return the value of InputVATInvoice.CreateTime
     *
     * @mbg.generated
     */
    public Date getCreateTime() {
        return createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.CreateTime
     *
     * @param createTime the value for InputVATInvoice.CreateTime
     *
     * @mbg.generated
     */
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.Status
     *
     * @return the value of InputVATInvoice.Status
     *
     * @mbg.generated
     */
    public Integer getStatus() {
        return status;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.Status
     *
     * @param status the value for InputVATInvoice.Status
     *
     * @mbg.generated
     */
    public void setStatus(Integer status) {
        this.status = status;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.PartAccntedPeriod
     *
     * @return the value of InputVATInvoice.PartAccntedPeriod
     *
     * @mbg.generated
     */
    public Integer getPartAccntedPeriod() {
        return partAccntedPeriod;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.PartAccntedPeriod
     *
     * @param partAccntedPeriod the value for InputVATInvoice.PartAccntedPeriod
     *
     * @mbg.generated
     */
    public void setPartAccntedPeriod(Integer partAccntedPeriod) {
        this.partAccntedPeriod = partAccntedPeriod;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column InputVATInvoice.AccntedPeriod
     *
     * @return the value of InputVATInvoice.AccntedPeriod
     *
     * @mbg.generated
     */
    public Integer getAccntedPeriod() {
        return accntedPeriod;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column InputVATInvoice.AccntedPeriod
     *
     * @param accntedPeriod the value for InputVATInvoice.AccntedPeriod
     *
     * @mbg.generated
     */
    public void setAccntedPeriod(Integer accntedPeriod) {
        this.accntedPeriod = accntedPeriod;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table InputVATInvoice
     *
     * @mbg.generated
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
        sb.append(", ID=").append(ID);
        sb.append(", periodID=").append(periodID);
        sb.append(", invoiceCode=").append(invoiceCode);
        sb.append(", invoiceNumber=").append(invoiceNumber);
        sb.append(", invoiceDate=").append(invoiceDate);
        sb.append(", sellerTaxNumber=").append(sellerTaxNumber);
        sb.append(", amount=").append(amount);
        sb.append(", taxAmount=").append(taxAmount);
        sb.append(", invoiceType=").append(invoiceType);
        sb.append(", certificationResult=").append(certificationResult);
        sb.append(", certificationDate=").append(certificationDate);
        sb.append(", creatorID=").append(creatorID);
        sb.append(", createTime=").append(createTime);
        sb.append(", status=").append(status);
        sb.append(", partAccntedPeriod=").append(partAccntedPeriod);
        sb.append(", accntedPeriod=").append(accntedPeriod);
        sb.append("]");
        return sb.toString();
    }
}