package pwc.taxtech.atms.entity; import java.io.Serializable; import java.util.Date; /** * * This class was generated by MyBatis Generator. * This class corresponds to the database table TAX_ADMIN.ACCOUNT_MAPPING_MANUAL * * @mbg.generated do_not_delete_during_merge */ public class AccountMappingManual extends BaseEntity implements Serializable { /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.ID * * @mbg.generated */ private String id; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.STANDARD_CODE * * @mbg.generated */ private String standardCode; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.FULL_NAME * * @mbg.generated */ private String fullName; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.ENTERPRISE_ACCOUNT_SET_ID * * @mbg.generated */ private String enterpriseAccountSetId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.ORGANIZATION_ID * * @mbg.generated */ private String organizationId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.INDUSTRY_ID * * @mbg.generated */ private String industryId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.UPDATE_TIME * * @mbg.generated */ private Date updateTime; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.UPDATE_BY * * @mbg.generated */ private String updateBy; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table TAX_ADMIN.ACCOUNT_MAPPING_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_ADMIN.ACCOUNT_MAPPING_MANUAL.ID * * @return the value of TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.ID * * @mbg.generated */ public String getId() { return id; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.ID * * @param id the value for TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.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 TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.STANDARD_CODE * * @return the value of TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.STANDARD_CODE * * @mbg.generated */ public String getStandardCode() { return standardCode; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.STANDARD_CODE * * @param standardCode the value for TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.STANDARD_CODE * * @mbg.generated */ public void setStandardCode(String standardCode) { this.standardCode = standardCode == null ? null : standardCode.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.FULL_NAME * * @return the value of TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.FULL_NAME * * @mbg.generated */ public String getFullName() { return fullName; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.FULL_NAME * * @param fullName the value for TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.FULL_NAME * * @mbg.generated */ public void setFullName(String fullName) { this.fullName = fullName == null ? null : fullName.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.ENTERPRISE_ACCOUNT_SET_ID * * @return the value of TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.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 TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.ENTERPRISE_ACCOUNT_SET_ID * * @param enterpriseAccountSetId the value for TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.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 TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.ORGANIZATION_ID * * @return the value of TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.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 TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.ORGANIZATION_ID * * @param organizationId the value for TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.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 TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.INDUSTRY_ID * * @return the value of TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.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 TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.INDUSTRY_ID * * @param industryId the value for TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.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 returns the value of the database column TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.UPDATE_TIME * * @return the value of TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.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_ADMIN.ACCOUNT_MAPPING_MANUAL.UPDATE_TIME * * @param updateTime the value for TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.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_ADMIN.ACCOUNT_MAPPING_MANUAL.UPDATE_BY * * @return the value of TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.UPDATE_BY * * @mbg.generated */ public String getUpdateBy() { return updateBy; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.UPDATE_BY * * @param updateBy the value for TAX_ADMIN.ACCOUNT_MAPPING_MANUAL.UPDATE_BY * * @mbg.generated */ public void setUpdateBy(String updateBy) { this.updateBy = updateBy == null ? null : updateBy.trim(); } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN.ACCOUNT_MAPPING_MANUAL * * @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(", standardCode=").append(standardCode); sb.append(", fullName=").append(fullName); sb.append(", enterpriseAccountSetId=").append(enterpriseAccountSetId); sb.append(", organizationId=").append(organizationId); sb.append(", industryId=").append(industryId); sb.append(", updateTime=").append(updateTime); sb.append(", updateBy=").append(updateBy); sb.append("]"); return sb.toString(); } }