package pwc.taxtech.atms.vat.entity;

import java.io.Serializable;

/**
 *
 * This class was generated by MyBatis Generator.
 * This class corresponds to the database table Account
 *
 * @mbg.generated do_not_delete_during_merge
 */
public class Account implements Serializable {
    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column Account.ID
     *
     * @mbg.generated
     */
    private String ID;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column Account.Code
     *
     * @mbg.generated
     */
    private String code;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column Account.Name
     *
     * @mbg.generated
     */
    private String name;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column Account.ParentCode
     *
     * @mbg.generated
     */
    private String parentCode;

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

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column Account.AcctProp
     *
     * @mbg.generated
     */
    private Integer acctProp;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column Account.SubProp
     *
     * @mbg.generated
     */
    private Integer subProp;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column Account.AcctLevel
     *
     * @mbg.generated
     */
    private Integer acctLevel;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column Account.Direction
     *
     * @mbg.generated
     */
    private Integer direction;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column Account.IsLeaf
     *
     * @mbg.generated
     */
    private Boolean isLeaf;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column Account.RuleType
     *
     * @mbg.generated
     */
    private Integer ruleType;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column Account.IsActive
     *
     * @mbg.generated
     */
    private Boolean isActive;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column Account.EnglishName
     *
     * @mbg.generated
     */
    private String englishName;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column Account.IndustryID
     *
     * @mbg.generated
     */
    private String industryID;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database table Account
     *
     * @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.ID
     *
     * @return the value of Account.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.ID
     *
     * @param ID the value for Account.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.Code
     *
     * @return the value of Account.Code
     *
     * @mbg.generated
     */
    public String getCode() {
        return code;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column Account.Code
     *
     * @param code the value for Account.Code
     *
     * @mbg.generated
     */
    public void setCode(String code) {
        this.code = code == null ? null : code.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column Account.Name
     *
     * @return the value of Account.Name
     *
     * @mbg.generated
     */
    public String getName() {
        return name;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column Account.Name
     *
     * @param name the value for Account.Name
     *
     * @mbg.generated
     */
    public void setName(String name) {
        this.name = name == null ? null : name.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column Account.ParentCode
     *
     * @return the value of Account.ParentCode
     *
     * @mbg.generated
     */
    public String getParentCode() {
        return parentCode;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column Account.ParentCode
     *
     * @param parentCode the value for Account.ParentCode
     *
     * @mbg.generated
     */
    public void setParentCode(String parentCode) {
        this.parentCode = parentCode == null ? null : parentCode.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column Account.FullName
     *
     * @return the value of Account.FullName
     *
     * @mbg.generated
     */
    public String getFullName() {
        return fullName;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column Account.FullName
     *
     * @param fullName the value for Account.FullName
     *
     * @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.AcctProp
     *
     * @return the value of Account.AcctProp
     *
     * @mbg.generated
     */
    public Integer getAcctProp() {
        return acctProp;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column Account.AcctProp
     *
     * @param acctProp the value for Account.AcctProp
     *
     * @mbg.generated
     */
    public void setAcctProp(Integer acctProp) {
        this.acctProp = acctProp;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column Account.SubProp
     *
     * @return the value of Account.SubProp
     *
     * @mbg.generated
     */
    public Integer getSubProp() {
        return subProp;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column Account.SubProp
     *
     * @param subProp the value for Account.SubProp
     *
     * @mbg.generated
     */
    public void setSubProp(Integer subProp) {
        this.subProp = subProp;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column Account.AcctLevel
     *
     * @return the value of Account.AcctLevel
     *
     * @mbg.generated
     */
    public Integer getAcctLevel() {
        return acctLevel;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column Account.AcctLevel
     *
     * @param acctLevel the value for Account.AcctLevel
     *
     * @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 Account.Direction
     *
     * @return the value of Account.Direction
     *
     * @mbg.generated
     */
    public Integer getDirection() {
        return direction;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column Account.Direction
     *
     * @param direction the value for Account.Direction
     *
     * @mbg.generated
     */
    public void setDirection(Integer direction) {
        this.direction = direction;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column Account.IsLeaf
     *
     * @return the value of Account.IsLeaf
     *
     * @mbg.generated
     */
    public Boolean getIsLeaf() {
        return isLeaf;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column Account.IsLeaf
     *
     * @param isLeaf the value for Account.IsLeaf
     *
     * @mbg.generated
     */
    public void setIsLeaf(Boolean isLeaf) {
        this.isLeaf = isLeaf;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column Account.RuleType
     *
     * @return the value of Account.RuleType
     *
     * @mbg.generated
     */
    public Integer getRuleType() {
        return ruleType;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column Account.RuleType
     *
     * @param ruleType the value for Account.RuleType
     *
     * @mbg.generated
     */
    public void setRuleType(Integer ruleType) {
        this.ruleType = ruleType;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column Account.IsActive
     *
     * @return the value of Account.IsActive
     *
     * @mbg.generated
     */
    public Boolean getIsActive() {
        return isActive;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column Account.IsActive
     *
     * @param isActive the value for Account.IsActive
     *
     * @mbg.generated
     */
    public void setIsActive(Boolean isActive) {
        this.isActive = isActive;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column Account.EnglishName
     *
     * @return the value of Account.EnglishName
     *
     * @mbg.generated
     */
    public String getEnglishName() {
        return englishName;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column Account.EnglishName
     *
     * @param englishName the value for Account.EnglishName
     *
     * @mbg.generated
     */
    public void setEnglishName(String englishName) {
        this.englishName = englishName == null ? null : englishName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column Account.IndustryID
     *
     * @return the value of Account.IndustryID
     *
     * @mbg.generated
     */
    public String getIndustryID() {
        return industryID;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column Account.IndustryID
     *
     * @param industryID the value for Account.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 Account
     *
     * @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(", code=").append(code);
        sb.append(", name=").append(name);
        sb.append(", parentCode=").append(parentCode);
        sb.append(", fullName=").append(fullName);
        sb.append(", acctProp=").append(acctProp);
        sb.append(", subProp=").append(subProp);
        sb.append(", acctLevel=").append(acctLevel);
        sb.append(", direction=").append(direction);
        sb.append(", isLeaf=").append(isLeaf);
        sb.append(", ruleType=").append(ruleType);
        sb.append(", isActive=").append(isActive);
        sb.append(", englishName=").append(englishName);
        sb.append(", industryID=").append(industryID);
        sb.append("]");
        return sb.toString();
    }
}