package pwc.taxtech.atms.entity;

import java.io.Serializable;

/**
 *
 * This class was generated by MyBatis Generator.
 * This class corresponds to the database table statistic_attribute_dimension
 *
 * @mbg.generated do_not_delete_during_merge
 */
public class StatisticAttributeDimension extends BaseEntity implements Serializable {
    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column statistic_attribute_dimension.id
     *
     * @mbg.generated
     */
    private String id;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column statistic_attribute_dimension.dimension_id
     *
     * @mbg.generated
     */
    private String dimensionId;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column statistic_attribute_dimension.statistics_attribute_id
     *
     * @mbg.generated
     */
    private String statisticsAttributeId;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column statistic_attribute_dimension.order_index
     *
     * @mbg.generated
     */
    private Boolean orderIndex;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database table statistic_attribute_dimension
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column statistic_attribute_dimension.id
     *
     * @return the value of statistic_attribute_dimension.id
     *
     * @mbg.generated
     */
    public String getId() {
        return id;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column statistic_attribute_dimension.id
     *
     * @param id the value for statistic_attribute_dimension.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 statistic_attribute_dimension.dimension_id
     *
     * @return the value of statistic_attribute_dimension.dimension_id
     *
     * @mbg.generated
     */
    public String getDimensionId() {
        return dimensionId;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column statistic_attribute_dimension.statistics_attribute_id
     *
     * @return the value of statistic_attribute_dimension.statistics_attribute_id
     *
     * @mbg.generated
     */
    public String getStatisticsAttributeId() {
        return statisticsAttributeId;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column statistic_attribute_dimension.order_index
     *
     * @return the value of statistic_attribute_dimension.order_index
     *
     * @mbg.generated
     */
    public Boolean getOrderIndex() {
        return orderIndex;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column statistic_attribute_dimension.order_index
     *
     * @param orderIndex the value for statistic_attribute_dimension.order_index
     *
     * @mbg.generated
     */
    public void setOrderIndex(Boolean orderIndex) {
        this.orderIndex = orderIndex;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table statistic_attribute_dimension
     *
     * @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(", dimensionId=").append(dimensionId);
        sb.append(", statisticsAttributeId=").append(statisticsAttributeId);
        sb.append(", orderIndex=").append(orderIndex);
        sb.append("]");
        return sb.toString();
    }
}