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

top.lingkang.mm.annotation.PreUpdate Maven / Gradle / Ivy

Go to download

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 { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy