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

tk.mybatis.mapper.code.ORDER Maven / Gradle / Ivy

The newest version!
package tk.mybatis.mapper.code;

/**
 * 执行 SQL 的时机
 *
 * @author liuzh
 */
public enum ORDER {
    /**
     * insert 后执行 SQL
     */
    AFTER,
    /**
     * insert 前执行 SQL
     */
    BEFORE,
    /**
     * 使用全局配置
     */
    DEFAULT
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy