com.dexcoder.commons.cache.EnableCache Maven / Gradle / Ivy
The newest version!
package com.dexcoder.commons.cache;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Created by liyd on 1/6/15.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD, ElementType.TYPE })
public @interface EnableCache {
/** 数据实体对象 */
Class>[] value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy