com.jeesuite.mybatis.plugin.cache.annotation.CacheIgnore Maven / Gradle / Ivy
/**
* Confidential and Proprietary Copyright 2019 By 卓越里程教育科技有限公司 All Rights Reserved
*/
package com.jeesuite.mybatis.plugin.cache.annotation;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Retention(RUNTIME)
@Target(TYPE)
public @interface CacheIgnore {
}