admin
2021-05-25 43a604467d91ef42148bfb3b5526618e91ea4adc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ks.lijin.util.annotation;
 
import java.lang.annotation.*;
 
@Documented
@Target(ElementType.METHOD)
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Repeatable(RedisCacheEvicts.class)
public @interface RedisCacheEvict {
    String key() default "";
    String keyPrefix() default "";
    //分类
    String cate();
}