package com.qianwen.mdc.collect.utils.redis;
|
|
import java.util.concurrent.TimeUnit;
|
|
/* loaded from: mdc-plugin-0.0.1-SNAPSHOT-删除lib.jar:BOOT-INF/classes/cn/net/hx/mdc/utils/redis/Status.class */
|
public abstract class Status {
|
|
/* loaded from: mdc-plugin-0.0.1-SNAPSHOT-删除lib.jar:BOOT-INF/classes/cn/net/hx/mdc/utils/redis/Status$ExpireEnum.class */
|
public enum ExpireEnum {
|
UNREAD_MSG(30L, TimeUnit.DAYS);
|
|
private Long time;
|
private TimeUnit timeUnit;
|
|
ExpireEnum(Long time, TimeUnit timeUnit) {
|
this.time = time;
|
this.timeUnit = timeUnit;
|
}
|
|
public Long getTime() {
|
return this.time;
|
}
|
|
public TimeUnit getTimeUnit() {
|
return this.timeUnit;
|
}
|
}
|
}
|