package com.ks.lucky.util.annotation; import java.lang.annotation.*; @Documented @Target(ElementType.METHOD) @Inherited @Retention(RetentionPolicy.RUNTIME) public @interface RedisCache { String key(); //分类 String cate(); //默认1分钟 int second() default 60; }