top.lingkang.mm.annotation.PreUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-magic Show documentation
Show all versions of mybatis-magic Show documentation
mybatis能力扩展框架,兼顾mybatis的mapper.xml编写操作数据库。
The newest version!
package top.lingkang.mm.annotation;
import java.lang.annotation.*;
/**
* 执行更新前执行此注解下的方法,无入参。适用于更新日期的更新
* 只会在调用下面的方法后回调:
* {@code {
* mapperManage.insert(entity);
* mapperManage.updateById(entity);
* }}
*
*
* @author lingkang
* Created by 2024/3/2
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface PreUpdate {
}