xiangpei
2025-04-18 ccadf9480d4e6a9dcc227a2a0b1f9ae0612e36fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.monkeylessey.constant;
 
import java.util.concurrent.TimeUnit;
 
/**
 * @author 29443
 * @version 1.0
 * @date 2022/4/21
 */
public class RedisKeyExpireConstants {
 
    /**
     * 验证码有效时长
     */
    public static final Long CAPTCHA_EXPIRE_TIME = 2L;
 
    /**
     * 验证码有效时长单位
     */
    public static final TimeUnit CAPTCHA_TIME_UNIT = TimeUnit.MINUTES;
 
}