yangys
2024-09-02 03c9023f1e373060d6cbf5df7a18de90440399be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
        }
    }
}