package com.ruoyi.common.annotation; 
 | 
  
 | 
import java.lang.annotation.ElementType; 
 | 
import java.lang.annotation.Retention; 
 | 
import java.lang.annotation.RetentionPolicy; 
 | 
import java.lang.annotation.Target; 
 | 
  
 | 
/** 
 | 
 * 当前数据,是否重复提交 
 | 
 */ 
 | 
@Target(ElementType.METHOD) 
 | 
@Retention(RetentionPolicy.RUNTIME) 
 | 
public @interface NotRepeatCommit { 
 | 
    String key() default "not_repeat_commit:"; 
 | 
  
 | 
    long value() default 10000; 
 | 
} 
 |