All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.healthy.common.security.properties.SmsCodeProperties Maven / Gradle / Ivy

package com.healthy.common.security.properties;

import lombok.Data;

/**
 * 短信验证码相关配置项
 */
@Data
public class SmsCodeProperties {

    /**
     * 验证码长度
     */
    private int length = 6;

    /**
     * 过期时间(秒)
     */
    private int expireIn = 60;

    /**
     * 要拦截的url,多个url用逗号隔开,ant pattern
     */
    private String url;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy