疯狂的狮子li
2021-06-04 dcf125a08ad3f0694815265850df78d62f1444fa
ruoyi-common/src/main/java/com/ruoyi/common/annotation/RedisLock.java
@@ -7,6 +7,8 @@
/**
 * 分布式锁(注解模式,不推荐使用,最好用锁的工具类)
 *
 * @author shenxinquan
 */
@Target({ElementType.METHOD})
@@ -14,14 +16,12 @@
public @interface RedisLock {
   /**
    * 锁过期时间
    * @return
    * 锁过期时间 默认30秒
    */
   int expireTime() default 30;//30秒
   int expireTime() default 30;
   /**
    * 锁key值
    * @return
    */
   String key() default "redisLockKey";
}