tk.mybatis.mapper.code.ORDER Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapper Show documentation
Show all versions of mapper Show documentation
Mybatis 通用 Mapper Jar 集成
package tk.mybatis.mapper.code;
/**
* 执行 SQL 的时机
*
* @author liuzh
*/
public enum ORDER {
AFTER, //insert 后执行 SQL
BEFORE,//insert 前执行 SQL
DEFAULT//使用全局配置
}