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

top.lingkang.mm.orm.MagicCreateLangMapper Maven / Gradle / Ivy

Go to download

mybatis能力扩展框架,兼顾mybatis的mapper.xml编写操作数据库。

The newest version!
package top.lingkang.mm.orm;

import org.apache.ibatis.annotations.Lang;
import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.annotations.Update;

import java.util.List;
import java.util.Map;

/**
 * 自定义sql处理
 *
 * @author lingkang
 * @create by 2024/3/6 10:21
 */
public interface MagicCreateLangMapper {
    @Select("${execSql_}")
    @Lang(MagicCreateLangDriver.class)
    List list(Map map);

    @Select("${execSql_}")
    @Lang(MagicCreateLangDriver.class)
    T one(Map map);

    @Update("${execSql_}")
    @Lang(MagicCreateLangDriver.class)
    int update(Map map);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy