package pwc.taxtech.atms.entity; import java.io.Serializable; /** * * This class was generated by MyBatis Generator. * This class corresponds to the database table TAX_ADMIN.CACHE * * @mbg.generated do_not_delete_during_merge */ public class Cache extends BaseEntity implements Serializable { /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_ADMIN.CACHE.ID * * @mbg.generated */ private String id; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_ADMIN.CACHE.CACHE_KEY * * @mbg.generated */ private String cacheKey; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column TAX_ADMIN.CACHE.LAST_MODIFY_TIME * * @mbg.generated */ private String lastModifyTime; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table TAX_ADMIN.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 TAX_ADMIN.CACHE.ID * * @return the value of TAX_ADMIN.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 TAX_ADMIN.CACHE.ID * * @param id the value for TAX_ADMIN.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 TAX_ADMIN.CACHE.CACHE_KEY * * @return the value of TAX_ADMIN.CACHE.CACHE_KEY * * @mbg.generated */ public String getCacheKey() { return cacheKey; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_ADMIN.CACHE.CACHE_KEY * * @param cacheKey the value for TAX_ADMIN.CACHE.CACHE_KEY * * @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 TAX_ADMIN.CACHE.LAST_MODIFY_TIME * * @return the value of TAX_ADMIN.CACHE.LAST_MODIFY_TIME * * @mbg.generated */ public String getLastModifyTime() { return lastModifyTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column TAX_ADMIN.CACHE.LAST_MODIFY_TIME * * @param lastModifyTime the value for TAX_ADMIN.CACHE.LAST_MODIFY_TIME * * @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 TAX_ADMIN.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(); } }