All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jeesuite.mybatis.plugin.cache.annotation.CacheEvictCascade Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
/**
 * 
 */
package com.jeesuite.mybatis.plugin.cache.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;

import com.jeesuite.mybatis.core.BaseEntity;

/**
 * 缓存关联更新
 * @description 
* @author vakin * @date 2016年12月4日 */ @Target({ ElementType.METHOD }) @Retention(RetentionPolicy.RUNTIME) @Inherited @Documented public @interface CacheEvictCascade { /** * 级联更新其他的实体组 * @return */ Class[] cascadeEntities() default {}; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy