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.BALANCE_STD_MANUAL * * @mbg.generated do_not_delete_during_merge */ public class BalanceStdManual implements Serializable { /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.BALANCE_ID * * @mbg.generated */ private String balanceId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.PERIOD_ID * * @mbg.generated */ private Long periodId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.ACCT_CODE * * @mbg.generated */ private String acctCode; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.BEG_BAL * * @mbg.generated */ private BigDecimal begBal; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.BEG_DEBIT_BAL * * @mbg.generated */ private BigDecimal begDebitBal; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.BEG_CREDIT_BAL * * @mbg.generated */ private BigDecimal begCreditBal; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.DEBIT_BAL * * @mbg.generated */ private BigDecimal debitBal; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.CREDIT_BAL * * @mbg.generated */ private BigDecimal creditBal; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_DEBIT_BAL * * @mbg.generated */ private BigDecimal yearDebitBal; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CREDIT_BAL * * @mbg.generated */ private BigDecimal yearCreditBal; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.END_BAL * * @mbg.generated */ private BigDecimal endBal; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.END_DEBIT_BAL * * @mbg.generated */ private BigDecimal endDebitBal; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.END_CREDIT_BAL * * @mbg.generated */ private BigDecimal endCreditBal; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.SUB_PROP * * @mbg.generated */ private Integer subProp; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.CARRYOVER_DEBIT * * @mbg.generated */ private BigDecimal carryoverDebit; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.CARRYOVER_CREDIT * * @mbg.generated */ private BigDecimal carryoverCredit; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CARRYOVER_DEBIT * * @mbg.generated */ private BigDecimal yearCarryoverDebit; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CARRYOVER_CREDIT * * @mbg.generated */ private BigDecimal yearCarryoverCredit; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.DEBIT_NET * * @mbg.generated */ private BigDecimal debitNet; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.CREDIT_NET * * @mbg.generated */ private BigDecimal creditNet; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_DEBIT_NET * * @mbg.generated */ private BigDecimal yearDebitNet; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CREDIT_NET * * @mbg.generated */ private BigDecimal yearCreditNet; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table TAX_PROJECT.BALANCE_STD_MANUAL * * @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.BALANCE_STD_MANUAL.BALANCE_ID * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.BALANCE_ID * * @param balanceId the value for TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.PERIOD_ID * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.PERIOD_ID * * @mbg.generated */ public Long getPeriodId() { return periodId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.PERIOD_ID * * @param periodId the value for TAX_PROJECT.BALANCE_STD_MANUAL.PERIOD_ID * * @mbg.generated */ public void setPeriodId(Long periodId) { this.periodId = periodId; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.ACCT_CODE * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.ACCT_CODE * * @param acctCode the value for TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.BEG_BAL * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.BEG_BAL * * @param begBal the value for TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.BEG_DEBIT_BAL * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.BEG_DEBIT_BAL * * @param begDebitBal the value for TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.BEG_CREDIT_BAL * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.BEG_CREDIT_BAL * * @param begCreditBal the value for TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.DEBIT_BAL * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.DEBIT_BAL * * @param debitBal the value for TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.CREDIT_BAL * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.CREDIT_BAL * * @param creditBal the value for TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.YEAR_DEBIT_BAL * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_DEBIT_BAL * * @mbg.generated */ public BigDecimal getYearDebitBal() { return yearDebitBal; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_DEBIT_BAL * * @param yearDebitBal the value for TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_DEBIT_BAL * * @mbg.generated */ public void setYearDebitBal(BigDecimal yearDebitBal) { this.yearDebitBal = yearDebitBal; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CREDIT_BAL * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CREDIT_BAL * * @mbg.generated */ public BigDecimal getYearCreditBal() { return yearCreditBal; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CREDIT_BAL * * @param yearCreditBal the value for TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CREDIT_BAL * * @mbg.generated */ public void setYearCreditBal(BigDecimal yearCreditBal) { this.yearCreditBal = yearCreditBal; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.END_BAL * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.END_BAL * * @param endBal the value for TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.END_DEBIT_BAL * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.END_DEBIT_BAL * * @param endDebitBal the value for TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.END_CREDIT_BAL * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.END_CREDIT_BAL * * @param endCreditBal the value for TAX_PROJECT.BALANCE_STD_MANUAL.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.BALANCE_STD_MANUAL.SUB_PROP * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.SUB_PROP * * @mbg.generated */ public Integer getSubProp() { return subProp; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.SUB_PROP * * @param subProp the value for TAX_PROJECT.BALANCE_STD_MANUAL.SUB_PROP * * @mbg.generated */ public void setSubProp(Integer subProp) { this.subProp = subProp; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.CARRYOVER_DEBIT * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.CARRYOVER_DEBIT * * @mbg.generated */ public BigDecimal getCarryoverDebit() { return carryoverDebit; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.CARRYOVER_DEBIT * * @param carryoverDebit the value for TAX_PROJECT.BALANCE_STD_MANUAL.CARRYOVER_DEBIT * * @mbg.generated */ public void setCarryoverDebit(BigDecimal carryoverDebit) { this.carryoverDebit = carryoverDebit; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.CARRYOVER_CREDIT * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.CARRYOVER_CREDIT * * @mbg.generated */ public BigDecimal getCarryoverCredit() { return carryoverCredit; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.CARRYOVER_CREDIT * * @param carryoverCredit the value for TAX_PROJECT.BALANCE_STD_MANUAL.CARRYOVER_CREDIT * * @mbg.generated */ public void setCarryoverCredit(BigDecimal carryoverCredit) { this.carryoverCredit = carryoverCredit; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CARRYOVER_DEBIT * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CARRYOVER_DEBIT * * @mbg.generated */ public BigDecimal getYearCarryoverDebit() { return yearCarryoverDebit; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CARRYOVER_DEBIT * * @param yearCarryoverDebit the value for TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CARRYOVER_DEBIT * * @mbg.generated */ public void setYearCarryoverDebit(BigDecimal yearCarryoverDebit) { this.yearCarryoverDebit = yearCarryoverDebit; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CARRYOVER_CREDIT * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CARRYOVER_CREDIT * * @mbg.generated */ public BigDecimal getYearCarryoverCredit() { return yearCarryoverCredit; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CARRYOVER_CREDIT * * @param yearCarryoverCredit the value for TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CARRYOVER_CREDIT * * @mbg.generated */ public void setYearCarryoverCredit(BigDecimal yearCarryoverCredit) { this.yearCarryoverCredit = yearCarryoverCredit; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.DEBIT_NET * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.DEBIT_NET * * @mbg.generated */ public BigDecimal getDebitNet() { return debitNet; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.DEBIT_NET * * @param debitNet the value for TAX_PROJECT.BALANCE_STD_MANUAL.DEBIT_NET * * @mbg.generated */ public void setDebitNet(BigDecimal debitNet) { this.debitNet = debitNet; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.CREDIT_NET * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.CREDIT_NET * * @mbg.generated */ public BigDecimal getCreditNet() { return creditNet; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.CREDIT_NET * * @param creditNet the value for TAX_PROJECT.BALANCE_STD_MANUAL.CREDIT_NET * * @mbg.generated */ public void setCreditNet(BigDecimal creditNet) { this.creditNet = creditNet; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_DEBIT_NET * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_DEBIT_NET * * @mbg.generated */ public BigDecimal getYearDebitNet() { return yearDebitNet; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_DEBIT_NET * * @param yearDebitNet the value for TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_DEBIT_NET * * @mbg.generated */ public void setYearDebitNet(BigDecimal yearDebitNet) { this.yearDebitNet = yearDebitNet; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CREDIT_NET * * @return the value of TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CREDIT_NET * * @mbg.generated */ public BigDecimal getYearCreditNet() { return yearCreditNet; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CREDIT_NET * * @param yearCreditNet the value for TAX_PROJECT.BALANCE_STD_MANUAL.YEAR_CREDIT_NET * * @mbg.generated */ public void setYearCreditNet(BigDecimal yearCreditNet) { this.yearCreditNet = yearCreditNet; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.BALANCE_STD_MANUAL * * @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(", begBal=").append(begBal); sb.append(", begDebitBal=").append(begDebitBal); sb.append(", begCreditBal=").append(begCreditBal); sb.append(", debitBal=").append(debitBal); sb.append(", creditBal=").append(creditBal); sb.append(", yearDebitBal=").append(yearDebitBal); sb.append(", yearCreditBal=").append(yearCreditBal); sb.append(", endBal=").append(endBal); sb.append(", endDebitBal=").append(endDebitBal); sb.append(", endCreditBal=").append(endCreditBal); sb.append(", subProp=").append(subProp); sb.append(", carryoverDebit=").append(carryoverDebit); sb.append(", carryoverCredit=").append(carryoverCredit); sb.append(", yearCarryoverDebit=").append(yearCarryoverDebit); sb.append(", yearCarryoverCredit=").append(yearCarryoverCredit); sb.append(", debitNet=").append(debitNet); sb.append(", creditNet=").append(creditNet); sb.append(", yearDebitNet=").append(yearDebitNet); sb.append(", yearCreditNet=").append(yearCreditNet); sb.append("]"); return sb.toString(); } }