package com.matrix.system.common.bean; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; /** * 缓存对象 */ @Data public class SysCacheValue { @TableId(type= IdType.AUTO) private Long id; /** * 缓存key */ private String cacheKey; /** * 过期时间,0 表示不过期,单位毫秒 */ private Long timeOut ; /** * 缓存值 */ private String cacheValue; /** * 类型名称 */ private String className; /** * 缓存创建时间 */ private Long createTime; }