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 TAX_PROJECT.ACCOUNT_REMAP_SUM * * @mbg.generated do_not_delete_during_merge */ public class AccountRemapSum implements Serializable { /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.ACCOUNT_REMAP_SUM_ID * * @mbg.generated */ private String accountRemapSumId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.PERIOD * * @mbg.generated */ private Integer period; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.ACCT_CODE * * @mbg.generated */ private String acctCode; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.PARENT * * @mbg.generated */ private String parent; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.ACCT_LEVEL * * @mbg.generated */ private Integer acctLevel; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.REMAP_DEBIT * * @mbg.generated */ private BigDecimal remapDebit; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.REMAP_CREDIT * * @mbg.generated */ private BigDecimal remapCredit; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.CREATE_TIME * * @mbg.generated */ private Date createTime; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.UPDATE_TIME * * @mbg.generated */ private Date updateTime; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.CREATOR_ID * * @mbg.generated */ private String creatorId; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table TAX_PROJECT.ACCOUNT_REMAP_SUM * * @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.ACCOUNT_REMAP_SUM.ACCOUNT_REMAP_SUM_ID * * @return the value of TAX_PROJECT.ACCOUNT_REMAP_SUM.ACCOUNT_REMAP_SUM_ID * * @mbg.generated */ public String getAccountRemapSumId() { return accountRemapSumId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.ACCOUNT_REMAP_SUM_ID * * @param accountRemapSumId the value for TAX_PROJECT.ACCOUNT_REMAP_SUM.ACCOUNT_REMAP_SUM_ID * * @mbg.generated */ public void setAccountRemapSumId(String accountRemapSumId) { this.accountRemapSumId = accountRemapSumId == null ? null : accountRemapSumId.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.PERIOD * * @return the value of TAX_PROJECT.ACCOUNT_REMAP_SUM.PERIOD * * @mbg.generated */ public Integer getPeriod() { return period; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.PERIOD * * @param period the value for TAX_PROJECT.ACCOUNT_REMAP_SUM.PERIOD * * @mbg.generated */ public void setPeriod(Integer period) { this.period = period; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.ACCT_CODE * * @return the value of TAX_PROJECT.ACCOUNT_REMAP_SUM.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.ACCOUNT_REMAP_SUM.ACCT_CODE * * @param acctCode the value for TAX_PROJECT.ACCOUNT_REMAP_SUM.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.ACCOUNT_REMAP_SUM.PARENT * * @return the value of TAX_PROJECT.ACCOUNT_REMAP_SUM.PARENT * * @mbg.generated */ public String getParent() { return parent; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.PARENT * * @param parent the value for TAX_PROJECT.ACCOUNT_REMAP_SUM.PARENT * * @mbg.generated */ public void setParent(String parent) { this.parent = parent == null ? null : parent.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.ACCT_LEVEL * * @return the value of TAX_PROJECT.ACCOUNT_REMAP_SUM.ACCT_LEVEL * * @mbg.generated */ public Integer getAcctLevel() { return acctLevel; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.ACCT_LEVEL * * @param acctLevel the value for TAX_PROJECT.ACCOUNT_REMAP_SUM.ACCT_LEVEL * * @mbg.generated */ public void setAcctLevel(Integer acctLevel) { this.acctLevel = acctLevel; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.REMAP_DEBIT * * @return the value of TAX_PROJECT.ACCOUNT_REMAP_SUM.REMAP_DEBIT * * @mbg.generated */ public BigDecimal getRemapDebit() { return remapDebit; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.REMAP_DEBIT * * @param remapDebit the value for TAX_PROJECT.ACCOUNT_REMAP_SUM.REMAP_DEBIT * * @mbg.generated */ public void setRemapDebit(BigDecimal remapDebit) { this.remapDebit = remapDebit; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.REMAP_CREDIT * * @return the value of TAX_PROJECT.ACCOUNT_REMAP_SUM.REMAP_CREDIT * * @mbg.generated */ public BigDecimal getRemapCredit() { return remapCredit; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.REMAP_CREDIT * * @param remapCredit the value for TAX_PROJECT.ACCOUNT_REMAP_SUM.REMAP_CREDIT * * @mbg.generated */ public void setRemapCredit(BigDecimal remapCredit) { this.remapCredit = remapCredit; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.CREATE_TIME * * @return the value of TAX_PROJECT.ACCOUNT_REMAP_SUM.CREATE_TIME * * @mbg.generated */ public Date getCreateTime() { return createTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.CREATE_TIME * * @param createTime the value for TAX_PROJECT.ACCOUNT_REMAP_SUM.CREATE_TIME * * @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 TAX_PROJECT.ACCOUNT_REMAP_SUM.UPDATE_TIME * * @return the value of TAX_PROJECT.ACCOUNT_REMAP_SUM.UPDATE_TIME * * @mbg.generated */ public Date getUpdateTime() { return updateTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.UPDATE_TIME * * @param updateTime the value for TAX_PROJECT.ACCOUNT_REMAP_SUM.UPDATE_TIME * * @mbg.generated */ public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.CREATOR_ID * * @return the value of TAX_PROJECT.ACCOUNT_REMAP_SUM.CREATOR_ID * * @mbg.generated */ public String getCreatorId() { return creatorId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_PROJECT.ACCOUNT_REMAP_SUM.CREATOR_ID * * @param creatorId the value for TAX_PROJECT.ACCOUNT_REMAP_SUM.CREATOR_ID * * @mbg.generated */ public void setCreatorId(String creatorId) { this.creatorId = creatorId == null ? null : creatorId.trim(); } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.ACCOUNT_REMAP_SUM * * @mbg.generated */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(getClass().getSimpleName()); sb.append(" ["); sb.append("Hash = ").append(hashCode()); sb.append(", accountRemapSumId=").append(accountRemapSumId); sb.append(", period=").append(period); sb.append(", acctCode=").append(acctCode); sb.append(", parent=").append(parent); sb.append(", acctLevel=").append(acctLevel); sb.append(", remapDebit=").append(remapDebit); sb.append(", remapCredit=").append(remapCredit); sb.append(", createTime=").append(createTime); sb.append(", updateTime=").append(updateTime); sb.append(", creatorId=").append(creatorId); sb.append("]"); return sb.toString(); } }