package pwc.taxtech.atms.entity; import java.io.Serializable; /** * * This class was generated by MyBatis Generator. * This class corresponds to the database table account_mapping * * @mbg.generated do_not_delete_during_merge */ public class AccountMapping extends BaseEntity implements Serializable { /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column account_mapping.id * * @mbg.generated */ private String id; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column account_mapping.enterprise_account_code * * @mbg.generated */ private String enterpriseAccountCode; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column account_mapping.standard_account_code * * @mbg.generated */ private String standardAccountCode; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column account_mapping.enterprise_account_set_id * * @mbg.generated */ private String enterpriseAccountSetId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column account_mapping.organization_id * * @mbg.generated */ private String organizationId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column account_mapping.industry_id * * @mbg.generated */ private String industryId; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table account_mapping * * @mbg.generated */ private static final long serialVersionUID = 1L; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column account_mapping.id * * @return the value of account_mapping.id * * @mbg.generated */ public String getId() { return id; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column account_mapping.id * * @param id the value for account_mapping.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 account_mapping.enterprise_account_code * * @return the value of account_mapping.enterprise_account_code * * @mbg.generated */ public String getEnterpriseAccountCode() { return enterpriseAccountCode; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column account_mapping.enterprise_account_code * * @param enterpriseAccountCode the value for account_mapping.enterprise_account_code * * @mbg.generated */ public void setEnterpriseAccountCode(String enterpriseAccountCode) { this.enterpriseAccountCode = enterpriseAccountCode == null ? null : enterpriseAccountCode.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column account_mapping.standard_account_code * * @return the value of account_mapping.standard_account_code * * @mbg.generated */ public String getStandardAccountCode() { return standardAccountCode; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column account_mapping.standard_account_code * * @param standardAccountCode the value for account_mapping.standard_account_code * * @mbg.generated */ public void setStandardAccountCode(String standardAccountCode) { this.standardAccountCode = standardAccountCode == null ? null : standardAccountCode.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column account_mapping.enterprise_account_set_id * * @return the value of account_mapping.enterprise_account_set_id * * @mbg.generated */ public String getEnterpriseAccountSetId() { return enterpriseAccountSetId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column account_mapping.enterprise_account_set_id * * @param enterpriseAccountSetId the value for account_mapping.enterprise_account_set_id * * @mbg.generated */ public void setEnterpriseAccountSetId(String enterpriseAccountSetId) { this.enterpriseAccountSetId = enterpriseAccountSetId == null ? null : enterpriseAccountSetId.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column account_mapping.organization_id * * @return the value of account_mapping.organization_id * * @mbg.generated */ public String getOrganizationId() { return organizationId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column account_mapping.organization_id * * @param organizationId the value for account_mapping.organization_id * * @mbg.generated */ public void setOrganizationId(String organizationId) { this.organizationId = organizationId == null ? null : organizationId.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column account_mapping.industry_id * * @return the value of account_mapping.industry_id * * @mbg.generated */ public String getIndustryId() { return industryId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column account_mapping.industry_id * * @param industryId the value for account_mapping.industry_id * * @mbg.generated */ public void setIndustryId(String industryId) { this.industryId = industryId == null ? null : industryId.trim(); } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table account_mapping * * @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(", enterpriseAccountCode=").append(enterpriseAccountCode); sb.append(", standardAccountCode=").append(standardAccountCode); sb.append(", enterpriseAccountSetId=").append(enterpriseAccountSetId); sb.append(", organizationId=").append(organizationId); sb.append(", industryId=").append(industryId); sb.append("]"); return sb.toString(); } }