package pwc.taxtech.atms.vat.entity;

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

/**
 *
 * This class was generated by MyBatis Generator.
 * This class corresponds to the database table TAX_PROJECT.COMPANY_BALANCE
 *
 * @mbg.generated do_not_delete_during_merge
 */
public class CompanyBalance implements Serializable {
    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TAX_PROJECT.COMPANY_BALANCE.BALANCE_ID
     *
     * @mbg.generated
     */
    private String balanceId;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TAX_PROJECT.COMPANY_BALANCE.PERIOD_ID
     *
     * @mbg.generated
     */
    private Integer periodId;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TAX_PROJECT.COMPANY_BALANCE.ACCT_CODE
     *
     * @mbg.generated
     */
    private String acctCode;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TAX_PROJECT.COMPANY_BALANCE.CUSTOMER_CODE
     *
     * @mbg.generated
     */
    private String customerCode;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TAX_PROJECT.COMPANY_BALANCE.BEG_DEBIT_BAL
     *
     * @mbg.generated
     */
    private BigDecimal begDebitBal;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TAX_PROJECT.COMPANY_BALANCE.BEG_CREDIT_BAL
     *
     * @mbg.generated
     */
    private BigDecimal begCreditBal;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TAX_PROJECT.COMPANY_BALANCE.BEG_BAL
     *
     * @mbg.generated
     */
    private BigDecimal begBal;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TAX_PROJECT.COMPANY_BALANCE.END_BAL
     *
     * @mbg.generated
     */
    private BigDecimal endBal;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TAX_PROJECT.COMPANY_BALANCE.END_DEBIT_BAL
     *
     * @mbg.generated
     */
    private BigDecimal endDebitBal;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TAX_PROJECT.COMPANY_BALANCE.END_CREDIT_BAL
     *
     * @mbg.generated
     */
    private BigDecimal endCreditBal;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TAX_PROJECT.COMPANY_BALANCE.DEBIT_BAL
     *
     * @mbg.generated
     */
    private BigDecimal debitBal;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TAX_PROJECT.COMPANY_BALANCE.CREDIT_BAL
     *
     * @mbg.generated
     */
    private BigDecimal creditBal;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TAX_PROJECT.COMPANY_BALANCE.MONTH_ID
     *
     * @mbg.generated
     */
    private Integer monthId;

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column TAX_PROJECT.COMPANY_BALANCE.BALANCE_ID
     *
     * @return the value of TAX_PROJECT.COMPANY_BALANCE.BALANCE_ID
     *
     * @mbg.generated
     */
    public String getBalanceId() {
        return balanceId;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column TAX_PROJECT.COMPANY_BALANCE.PERIOD_ID
     *
     * @return the value of TAX_PROJECT.COMPANY_BALANCE.PERIOD_ID
     *
     * @mbg.generated
     */
    public Integer getPeriodId() {
        return periodId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column TAX_PROJECT.COMPANY_BALANCE.PERIOD_ID
     *
     * @param periodId the value for TAX_PROJECT.COMPANY_BALANCE.PERIOD_ID
     *
     * @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 TAX_PROJECT.COMPANY_BALANCE.ACCT_CODE
     *
     * @return the value of TAX_PROJECT.COMPANY_BALANCE.ACCT_CODE
     *
     * @mbg.generated
     */
    public String getAcctCode() {
        return acctCode;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column TAX_PROJECT.COMPANY_BALANCE.CUSTOMER_CODE
     *
     * @return the value of TAX_PROJECT.COMPANY_BALANCE.CUSTOMER_CODE
     *
     * @mbg.generated
     */
    public String getCustomerCode() {
        return customerCode;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column TAX_PROJECT.COMPANY_BALANCE.BEG_DEBIT_BAL
     *
     * @return the value of TAX_PROJECT.COMPANY_BALANCE.BEG_DEBIT_BAL
     *
     * @mbg.generated
     */
    public BigDecimal getBegDebitBal() {
        return begDebitBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column TAX_PROJECT.COMPANY_BALANCE.BEG_DEBIT_BAL
     *
     * @param begDebitBal the value for TAX_PROJECT.COMPANY_BALANCE.BEG_DEBIT_BAL
     *
     * @mbg.generated
     */
    public void setBegDebitBal(BigDecimal begDebitBal) {
        this.begDebitBal = begDebitBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column TAX_PROJECT.COMPANY_BALANCE.BEG_CREDIT_BAL
     *
     * @return the value of TAX_PROJECT.COMPANY_BALANCE.BEG_CREDIT_BAL
     *
     * @mbg.generated
     */
    public BigDecimal getBegCreditBal() {
        return begCreditBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column TAX_PROJECT.COMPANY_BALANCE.BEG_CREDIT_BAL
     *
     * @param begCreditBal the value for TAX_PROJECT.COMPANY_BALANCE.BEG_CREDIT_BAL
     *
     * @mbg.generated
     */
    public void setBegCreditBal(BigDecimal begCreditBal) {
        this.begCreditBal = begCreditBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column TAX_PROJECT.COMPANY_BALANCE.BEG_BAL
     *
     * @return the value of TAX_PROJECT.COMPANY_BALANCE.BEG_BAL
     *
     * @mbg.generated
     */
    public BigDecimal getBegBal() {
        return begBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column TAX_PROJECT.COMPANY_BALANCE.BEG_BAL
     *
     * @param begBal the value for TAX_PROJECT.COMPANY_BALANCE.BEG_BAL
     *
     * @mbg.generated
     */
    public void setBegBal(BigDecimal begBal) {
        this.begBal = begBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column TAX_PROJECT.COMPANY_BALANCE.END_BAL
     *
     * @return the value of TAX_PROJECT.COMPANY_BALANCE.END_BAL
     *
     * @mbg.generated
     */
    public BigDecimal getEndBal() {
        return endBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column TAX_PROJECT.COMPANY_BALANCE.END_BAL
     *
     * @param endBal the value for TAX_PROJECT.COMPANY_BALANCE.END_BAL
     *
     * @mbg.generated
     */
    public void setEndBal(BigDecimal endBal) {
        this.endBal = endBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column TAX_PROJECT.COMPANY_BALANCE.END_DEBIT_BAL
     *
     * @return the value of TAX_PROJECT.COMPANY_BALANCE.END_DEBIT_BAL
     *
     * @mbg.generated
     */
    public BigDecimal getEndDebitBal() {
        return endDebitBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column TAX_PROJECT.COMPANY_BALANCE.END_DEBIT_BAL
     *
     * @param endDebitBal the value for TAX_PROJECT.COMPANY_BALANCE.END_DEBIT_BAL
     *
     * @mbg.generated
     */
    public void setEndDebitBal(BigDecimal endDebitBal) {
        this.endDebitBal = endDebitBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column TAX_PROJECT.COMPANY_BALANCE.END_CREDIT_BAL
     *
     * @return the value of TAX_PROJECT.COMPANY_BALANCE.END_CREDIT_BAL
     *
     * @mbg.generated
     */
    public BigDecimal getEndCreditBal() {
        return endCreditBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column TAX_PROJECT.COMPANY_BALANCE.END_CREDIT_BAL
     *
     * @param endCreditBal the value for TAX_PROJECT.COMPANY_BALANCE.END_CREDIT_BAL
     *
     * @mbg.generated
     */
    public void setEndCreditBal(BigDecimal endCreditBal) {
        this.endCreditBal = endCreditBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column TAX_PROJECT.COMPANY_BALANCE.DEBIT_BAL
     *
     * @return the value of TAX_PROJECT.COMPANY_BALANCE.DEBIT_BAL
     *
     * @mbg.generated
     */
    public BigDecimal getDebitBal() {
        return debitBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column TAX_PROJECT.COMPANY_BALANCE.DEBIT_BAL
     *
     * @param debitBal the value for TAX_PROJECT.COMPANY_BALANCE.DEBIT_BAL
     *
     * @mbg.generated
     */
    public void setDebitBal(BigDecimal debitBal) {
        this.debitBal = debitBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column TAX_PROJECT.COMPANY_BALANCE.CREDIT_BAL
     *
     * @return the value of TAX_PROJECT.COMPANY_BALANCE.CREDIT_BAL
     *
     * @mbg.generated
     */
    public BigDecimal getCreditBal() {
        return creditBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column TAX_PROJECT.COMPANY_BALANCE.CREDIT_BAL
     *
     * @param creditBal the value for TAX_PROJECT.COMPANY_BALANCE.CREDIT_BAL
     *
     * @mbg.generated
     */
    public void setCreditBal(BigDecimal creditBal) {
        this.creditBal = creditBal;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column TAX_PROJECT.COMPANY_BALANCE.MONTH_ID
     *
     * @return the value of TAX_PROJECT.COMPANY_BALANCE.MONTH_ID
     *
     * @mbg.generated
     */
    public Integer getMonthId() {
        return monthId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column TAX_PROJECT.COMPANY_BALANCE.MONTH_ID
     *
     * @param monthId the value for TAX_PROJECT.COMPANY_BALANCE.MONTH_ID
     *
     * @mbg.generated
     */
    public void setMonthId(Integer monthId) {
        this.monthId = monthId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table TAX_PROJECT.COMPANY_BALANCE
     *
     * @mbg.generated
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
        sb.append(", balanceId=").append(balanceId);
        sb.append(", periodId=").append(periodId);
        sb.append(", acctCode=").append(acctCode);
        sb.append(", customerCode=").append(customerCode);
        sb.append(", begDebitBal=").append(begDebitBal);
        sb.append(", begCreditBal=").append(begCreditBal);
        sb.append(", begBal=").append(begBal);
        sb.append(", endBal=").append(endBal);
        sb.append(", endDebitBal=").append(endDebitBal);
        sb.append(", endCreditBal=").append(endCreditBal);
        sb.append(", debitBal=").append(debitBal);
        sb.append(", creditBal=").append(creditBal);
        sb.append(", monthId=").append(monthId);
        sb.append("]");
        return sb.toString();
    }
}