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 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 account_mapping_manual.id
     *
     * @mbg.generated
     */
    private String id;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column account_mapping_manual.standard_code
     *
     * @mbg.generated
     */
    private String standardCode;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column account_mapping_manual.full_name
     *
     * @mbg.generated
     */
    private String fullName;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column 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 account_mapping_manual.organization_id
     *
     * @mbg.generated
     */
    private String organizationId;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column account_mapping_manual.industry_id
     *
     * @mbg.generated
     */
    private String industryId;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column account_mapping_manual.update_time
     *
     * @mbg.generated
     */
    private Date updateTime;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column account_mapping_manual.update_by
     *
     * @mbg.generated
     */
    private String updateBy;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database table 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 account_mapping_manual.id
     *
     * @return the value of 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 account_mapping_manual.id
     *
     * @param id the value for 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 account_mapping_manual.standard_code
     *
     * @return the value of 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 account_mapping_manual.standard_code
     *
     * @param standardCode the value for 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 account_mapping_manual.full_name
     *
     * @return the value of 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 account_mapping_manual.full_name
     *
     * @param fullName the value for 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 account_mapping_manual.enterprise_account_set_id
     *
     * @return the value of 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 account_mapping_manual.enterprise_account_set_id
     *
     * @param enterpriseAccountSetId the value for 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 account_mapping_manual.organization_id
     *
     * @return the value of 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 account_mapping_manual.organization_id
     *
     * @param organizationId the value for 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 account_mapping_manual.industry_id
     *
     * @return the value of 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 account_mapping_manual.industry_id
     *
     * @param industryId the value for 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 account_mapping_manual.update_time
     *
     * @return the value of 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 account_mapping_manual.update_time
     *
     * @param updateTime the value for 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 account_mapping_manual.update_by
     *
     * @return the value of 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 account_mapping_manual.update_by
     *
     * @param updateBy the value for 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 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();
    }
}