package pwc.taxtech.atms.entitiy; import java.io.Serializable; /** * * This class was generated by MyBatis Generator. * This class corresponds to the database table AccountMapping * * @mbg.generated do_not_delete_during_merge */ public class AccountMapping implements Serializable { /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column AccountMapping.ID * * @mbg.generated */ private String ID; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column AccountMapping.EnterpriseAccountCode * * @mbg.generated */ private String enterpriseAccountCode; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column AccountMapping.StandardAccountCode * * @mbg.generated */ private String standardAccountCode; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column AccountMapping.EnterpriseAccountSetID * * @mbg.generated */ private String enterpriseAccountSetID; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column AccountMapping.OrganizationID * * @mbg.generated */ private String organizationID; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column AccountMapping.IndustryID * * @mbg.generated */ private String industryID; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table AccountMapping * * @mbg.generated */ private static final long serialVersionUID = 1L; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column AccountMapping.ID * * @return the value of AccountMapping.ID * * @mbg.generated */ public String getID() { return ID; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column AccountMapping.ID * * @param ID the value for AccountMapping.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 AccountMapping.EnterpriseAccountCode * * @return the value of AccountMapping.EnterpriseAccountCode * * @mbg.generated */ public String getEnterpriseAccountCode() { return enterpriseAccountCode; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column AccountMapping.EnterpriseAccountCode * * @param enterpriseAccountCode the value for AccountMapping.EnterpriseAccountCode * * @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 AccountMapping.StandardAccountCode * * @return the value of AccountMapping.StandardAccountCode * * @mbg.generated */ public String getStandardAccountCode() { return standardAccountCode; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column AccountMapping.StandardAccountCode * * @param standardAccountCode the value for AccountMapping.StandardAccountCode * * @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 AccountMapping.EnterpriseAccountSetID * * @return the value of AccountMapping.EnterpriseAccountSetID * * @mbg.generated */ public String getEnterpriseAccountSetID() { return enterpriseAccountSetID; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column AccountMapping.EnterpriseAccountSetID * * @param enterpriseAccountSetID the value for AccountMapping.EnterpriseAccountSetID * * @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 AccountMapping.OrganizationID * * @return the value of AccountMapping.OrganizationID * * @mbg.generated */ public String getOrganizationID() { return organizationID; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column AccountMapping.OrganizationID * * @param organizationID the value for AccountMapping.OrganizationID * * @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 AccountMapping.IndustryID * * @return the value of AccountMapping.IndustryID * * @mbg.generated */ public String getIndustryID() { return industryID; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column AccountMapping.IndustryID * * @param industryID the value for AccountMapping.IndustryID * * @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 AccountMapping * * @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(); } }