com.jarvis.cache.admin.AutoLoadVO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autoload-cache-spring-boot-starter Show documentation
Show all versions of autoload-cache-spring-boot-starter Show documentation
autoload-cache spring boot starter.
The newest version!
package com.jarvis.cache.admin;
import lombok.Data;
@Data
public class AutoLoadVO {
private String namespace;
private String key;
private String hfield;
private String method;
private String firstRequestTime;
private String lastRequestTime;
private long requestTimes;
private long expire;
private String expireTime;
private long requestTimeout;
private String requestTimeoutTime;
private String lastLoadTime;
private long loadCount;
private long averageUseTime;
}