Newer
Older
newfiber_standard_algae / newfiber-gateway / src / main / java / com / newfiber / gateway / enums / EGatewayRedisKey.java
@xiongkai xiongkai on 17 Jun 715 bytes 初始化
package com.newfiber.gateway.enums;

import com.newfiber.common.core.web.support.IRedisPrefix;
import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * @author : X.K
 * @since : 2023/2/28 下午3:03
 */
@Getter
@AllArgsConstructor
public enum EGatewayRedisKey implements IRedisPrefix {

	/**
	 *
	 */
	LoginCaptchaCodes("captcha_codes", "登录验证码"),
	Token("login_tokens", "token"),
	ClientToken("client_tokens", "client_token"),
	ClientResource("ClientResource", "第三方客户端授权资源"),
	ClientInfo("ClientInfo", "第三方客户端信息"),
	ClientFrequency("ClientFrequency", "第三方客户端访问频率"),
		;

	private final String moduleKey;

	private final String moduleName;

}