疯狂的狮子li
2021-08-01 946242e8f1a871a6ee6bf3cbd1906bfc7f651970
add 增加 重复提交 配置属性类
已添加1个文件
22 ■■■■■ 文件已修改
ruoyi-framework/src/main/java/com/ruoyi/framework/config/properties/RepeatSubmitProperties.java 22 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-framework/src/main/java/com/ruoyi/framework/config/properties/RepeatSubmitProperties.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,22 @@
package com.ruoyi.framework.config.properties;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
/**
 * é‡å¤æäº¤ é…ç½®å±žæ€§
 *
 * @author Lion Li
 */
@Data
@Component
@ConfigurationProperties(prefix = "repeat-submit")
public class RepeatSubmitProperties {
    /**
     * é—´é𔿗¶é—´(毫秒)
     */
    private int intervalTime;
}