YJ
2021-05-17 fd783b378483b85987f42e7e6153869da6e687f7
1
2
3
4
5
6
7
8
9
10
11
package com.ks.vip.util.annotation;
 
import java.lang.annotation.*;
 
@Documented
@Target(ElementType.METHOD)
@Inherited
@Retention(RetentionPolicy.RUNTIME)
public @interface RedisCacheEvicts {
    RedisCacheEvict[] value();
}