admin
2019-08-22 d80640689e6949780811f4f8d1c8c972dbd4aa0b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.yeshi.fanli.util.annotation;
 
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
@Documented
@Target(ElementType.METHOD)
@Inherited
@Retention(RetentionPolicy.RUNTIME)
public @interface RedisCache {
    String key();
}