All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.llsfw.generator.model.standard.system.TtServerGlobalParameters Maven / Gradle / Ivy

The newest version!
package com.llsfw.generator.model.standard.system;

import java.io.Serializable;

public class TtServerGlobalParameters implements Serializable {
    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TT_SERVER_GLOBAL_PARAMETERS.PARAMETERS_CODE
     *
     * @mbggenerated Mon Dec 07 22:45:14 CST 2015
     */
    private String parametersCode;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TT_SERVER_GLOBAL_PARAMETERS.PARAMETERS_VALUE
     *
     * @mbggenerated Mon Dec 07 22:45:14 CST 2015
     */
    private String parametersValue;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column TT_SERVER_GLOBAL_PARAMETERS.PARAMETERS_DESC
     *
     * @mbggenerated Mon Dec 07 22:45:14 CST 2015
     */
    private String parametersDesc;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database table TT_SERVER_GLOBAL_PARAMETERS
     *
     * @mbggenerated Mon Dec 07 22:45:14 CST 2015
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column TT_SERVER_GLOBAL_PARAMETERS.PARAMETERS_CODE
     *
     * @return the value of TT_SERVER_GLOBAL_PARAMETERS.PARAMETERS_CODE
     *
     * @mbggenerated Mon Dec 07 22:45:14 CST 2015
     */
    public String getParametersCode() {
        return parametersCode;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column TT_SERVER_GLOBAL_PARAMETERS.PARAMETERS_CODE
     *
     * @param parametersCode the value for TT_SERVER_GLOBAL_PARAMETERS.PARAMETERS_CODE
     *
     * @mbggenerated Mon Dec 07 22:45:14 CST 2015
     */
    public void setParametersCode(String parametersCode) {
        this.parametersCode = parametersCode;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column TT_SERVER_GLOBAL_PARAMETERS.PARAMETERS_VALUE
     *
     * @return the value of TT_SERVER_GLOBAL_PARAMETERS.PARAMETERS_VALUE
     *
     * @mbggenerated Mon Dec 07 22:45:14 CST 2015
     */
    public String getParametersValue() {
        return parametersValue;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column TT_SERVER_GLOBAL_PARAMETERS.PARAMETERS_VALUE
     *
     * @param parametersValue the value for TT_SERVER_GLOBAL_PARAMETERS.PARAMETERS_VALUE
     *
     * @mbggenerated Mon Dec 07 22:45:14 CST 2015
     */
    public void setParametersValue(String parametersValue) {
        this.parametersValue = parametersValue;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column TT_SERVER_GLOBAL_PARAMETERS.PARAMETERS_DESC
     *
     * @return the value of TT_SERVER_GLOBAL_PARAMETERS.PARAMETERS_DESC
     *
     * @mbggenerated Mon Dec 07 22:45:14 CST 2015
     */
    public String getParametersDesc() {
        return parametersDesc;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column TT_SERVER_GLOBAL_PARAMETERS.PARAMETERS_DESC
     *
     * @param parametersDesc the value for TT_SERVER_GLOBAL_PARAMETERS.PARAMETERS_DESC
     *
     * @mbggenerated Mon Dec 07 22:45:14 CST 2015
     */
    public void setParametersDesc(String parametersDesc) {
        this.parametersDesc = parametersDesc;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table TT_SERVER_GLOBAL_PARAMETERS
     *
     * @mbggenerated Mon Dec 07 22:45:14 CST 2015
     */
    @Override
    public boolean equals(Object that) {
        if (this == that) {
            return true;
        }
        if (that == null) {
            return false;
        }
        if (getClass() != that.getClass()) {
            return false;
        }
        TtServerGlobalParameters other = (TtServerGlobalParameters) that;
        return (this.getParametersCode() == null ? other.getParametersCode() == null : this.getParametersCode().equals(other.getParametersCode()))
            && (this.getParametersValue() == null ? other.getParametersValue() == null : this.getParametersValue().equals(other.getParametersValue()))
            && (this.getParametersDesc() == null ? other.getParametersDesc() == null : this.getParametersDesc().equals(other.getParametersDesc()));
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table TT_SERVER_GLOBAL_PARAMETERS
     *
     * @mbggenerated Mon Dec 07 22:45:14 CST 2015
     */
    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((getParametersCode() == null) ? 0 : getParametersCode().hashCode());
        result = prime * result + ((getParametersValue() == null) ? 0 : getParametersValue().hashCode());
        result = prime * result + ((getParametersDesc() == null) ? 0 : getParametersDesc().hashCode());
        return result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy