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();
|
}
|