Cache.java 3.53 KB
package pwc.taxtech.atms.entitiy;

import java.io.Serializable;

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

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column Cache.CacheKey
     *
     * @mbg.generated
     */
    private String cacheKey;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column Cache.LastModifyTime
     *
     * @mbg.generated
     */
    private String lastModifyTime;

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

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

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column Cache.ID
     *
     * @param ID the value for Cache.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 Cache.CacheKey
     *
     * @return the value of Cache.CacheKey
     *
     * @mbg.generated
     */
    public String getCacheKey() {
        return cacheKey;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column Cache.LastModifyTime
     *
     * @return the value of Cache.LastModifyTime
     *
     * @mbg.generated
     */
    public String getLastModifyTime() {
        return lastModifyTime;
    }

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

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