- IdentityDialect - tk.mybatis.mapper.code中的枚举
-
- IdsMapper<T> - tk.mybatis.mapper.common中的接口
-
通用Mapper接口,根据ids操作
- IdsProvider - tk.mybatis.mapper.provider中的类
-
通过 ids 字符串的各种操作
ids 如 "1,2,3"
- IdsProvider(Class<?>, MapperHelper) - 类 的构造器tk.mybatis.mapper.provider.IdsProvider
-
- IDynamicTableName - tk.mybatis.mapper.entity中的接口
-
实现动态表名时,实体类需要实现该接口
- ifEmptyRegisterDefaultInterface() - 类 中的方法tk.mybatis.mapper.mapperhelper.MapperHelper
-
如果当前注册的接口为空,自动注册默认接口
- initEntityNameMap(Class<?>, Config) - 类 中的静态方法tk.mybatis.mapper.mapperhelper.EntityHelper
-
初始化实体属性
- initPropertyMap() - 类 中的方法tk.mybatis.mapper.entity.EntityTable
-
初始化 - Example 会使用
- insert(T) - 接口 中的方法tk.mybatis.mapper.common.base.insert.InsertMapper
-
保存一个实体,null的属性也会保存,不会使用数据库默认值
- insert(T) - 接口 中的方法tk.mybatis.mapper.common.sqlserver.InsertMapper
-
插入数据库,`null`值也会插入,不会使用列的默认值
- insert(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.base.BaseInsertProvider
-
插入全部,这段代码比较复杂,这里举个例子
CountryU生成的insert方法结构如下:
<bind name="countryname_bind" value='@java.util.UUID@randomUUID().toString().replace("-", "")'/>
INSERT INTO country_u(id,countryname,countrycode) VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id !
- insert(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.SqlServerProvider
-
插入
- insertColumns(Class<?>, boolean, boolean, boolean) - 类 中的静态方法tk.mybatis.mapper.mapperhelper.SqlHelper
-
insert table()列
- insertIntoTable(Class<?>, String) - 类 中的静态方法tk.mybatis.mapper.mapperhelper.SqlHelper
-
insert into tableName - 动态表名
- insertList(List<T>) - 接口 中的方法tk.mybatis.mapper.common.special.InsertListMapper
-
批量插入,支持批量插入的数据库可以使用,例如MySQL,H2等,另外该接口限制实体包含`id`属性并且必须为自增列
- insertList(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.SpecialProvider
-
批量插入
- InsertListMapper<T> - tk.mybatis.mapper.common.special中的接口
-
通用Mapper接口,特殊方法,批量插入,支持批量插入的数据库都可以使用,例如mysql,h2等
- InsertMapper<T> - tk.mybatis.mapper.common.base.insert中的接口
-
通用Mapper接口,插入
- InsertMapper<T> - tk.mybatis.mapper.common.sqlserver中的接口
-
通用Mapper接口,插入
- insertSelective(T) - 接口 中的方法tk.mybatis.mapper.common.base.insert.InsertSelectiveMapper
-
保存一个实体,null的属性不会保存,会使用数据库默认值
- insertSelective(T) - 接口 中的方法tk.mybatis.mapper.common.sqlserver.InsertSelectiveMapper
-
- insertSelective(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.base.BaseInsertProvider
-
插入不为null的字段,这段代码比较复杂,这里举个例子
CountryU生成的insertSelective方法结构如下:
<bind name="countryname_bind" value='@java.util.UUID@randomUUID().toString().replace("-", "")'/>
INSERT INTO country_u
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id !
- insertSelective(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.SqlServerProvider
-
插入不为null的字段
- InsertSelectiveMapper<T> - tk.mybatis.mapper.common.base.insert中的接口
-
通用Mapper接口,插入
- InsertSelectiveMapper<T> - tk.mybatis.mapper.common.sqlserver中的接口
-
通用Mapper接口,插入
- insertUseGeneratedKeys(T) - 接口 中的方法tk.mybatis.mapper.common.special.InsertUseGeneratedKeysMapper
-
插入数据,限制为实体包含`id`属性并且必须为自增列,实体配置的主键策略无效
- insertUseGeneratedKeys(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.SpecialProvider
-
插入,主键id,自增
- InsertUseGeneratedKeysMapper<T> - tk.mybatis.mapper.common.special中的接口
-
通用Mapper接口,特殊方法,批量插入,支持批量插入的数据库都可以使用,例如mysql,h2等
- insertValuesColumns(Class<?>, boolean, boolean, boolean) - 类 中的静态方法tk.mybatis.mapper.mapperhelper.SqlHelper
-
insert-values()列
- isAnnotationPresent(Class<? extends Annotation>) - 类 中的方法tk.mybatis.mapper.entity.EntityField
-
是否有该注解
- isBEFORE() - 类 中的方法tk.mybatis.mapper.entity.Config
-
获取SelectKey的Order
- isBEFORE() - 类 中的方法tk.mybatis.mapper.mapperhelper.MapperTemplate
-
- isBetweenValue() - 类 中的方法tk.mybatis.mapper.entity.Example.Criterion
-
- isCheckExampleEntityClass() - 类 中的方法tk.mybatis.mapper.entity.Config
-
- isCheckExampleEntityClass() - 类 中的方法tk.mybatis.mapper.mapperhelper.MapperTemplate
-
- isDistinct() - 类 中的方法tk.mybatis.mapper.entity.Example
-
- isDynamicParameter(Object) - 类 中的静态方法tk.mybatis.mapper.util.OGNL
-
判断参数是否支持动态表名
- isEmpty(String) - 类 中的静态方法tk.mybatis.mapper.util.StringUtil
-
空
- isEnableMethodAnnotation() - 类 中的方法tk.mybatis.mapper.entity.Config
-
- isExtendCommonMapper(Class<?>) - 类 中的方法tk.mybatis.mapper.mapperhelper.MapperHelper
-
判断接口是否包含通用接口
- isForUpdate() - 类 中的方法tk.mybatis.mapper.entity.Example
-
- isId() - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- isIdentity() - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- isInsertable() - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- isListValue() - 类 中的方法tk.mybatis.mapper.entity.Example.Criterion
-
- isLowercaseAlpha(char) - 类 中的静态方法tk.mybatis.mapper.util.StringUtil
-
- isMapperMethod(String) - 类 中的方法tk.mybatis.mapper.mapperhelper.MapperHelper
-
判断当前的接口方法是否需要进行拦截
- isNotDynamicParameter(Object) - 类 中的静态方法tk.mybatis.mapper.util.OGNL
-
判断参数是否b支持动态表名
- isNotEmpty() - 类 中的方法tk.mybatis.mapper.entity.Config
-
- isNotEmpty() - 类 中的方法tk.mybatis.mapper.mapperhelper.MapperTemplate
-
- isNotEmpty(String) - 类 中的静态方法tk.mybatis.mapper.util.StringUtil
-
非空
- isNoValue() - 类 中的方法tk.mybatis.mapper.entity.Example.Criterion
-
- isSimpleType(Class<?>) - 类 中的静态方法tk.mybatis.mapper.util.SimpleTypeUtil
-
- isSingleValue() - 类 中的方法tk.mybatis.mapper.entity.Example.Criterion
-
- isUpdatable() - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- isUppercaseAlpha(char) - 类 中的静态方法tk.mybatis.mapper.util.StringUtil
-
- isUseSimpleType() - 类 中的方法tk.mybatis.mapper.entity.Config
-
- isUuid() - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- isValid() - 类 中的方法tk.mybatis.mapper.entity.Example.GeneratedCriteria
-
- select(T) - 接口 中的方法tk.mybatis.mapper.common.base.select.SelectMapper
-
根据实体中的属性值进行查询,查询条件使用等号
- select(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.base.BaseSelectProvider
-
查询
- SELECT_KEY_SUFFIX - 类 中的静态变量tk.mybatis.mapper.mapperhelper.SelectKeyGenerator
-
- selectAll() - 接口 中的方法tk.mybatis.mapper.common.base.select.SelectAllMapper
-
查询全部结果
- selectAll(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.base.BaseSelectProvider
-
查询全部结果
- selectAllColumns(Class<?>) - 类 中的静态方法tk.mybatis.mapper.mapperhelper.SqlHelper
-
select xxx,xxx...
- SelectAllMapper<T> - tk.mybatis.mapper.common.base.select中的接口
-
- selectByCondition(Object) - 接口 中的方法tk.mybatis.mapper.common.condition.SelectByConditionMapper
-
根据Condition条件进行查询
- selectByCondition(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.ConditionProvider
-
根据Condition查询
- selectByConditionAndRowBounds(Object, RowBounds) - 接口 中的方法tk.mybatis.mapper.common.rowbounds.SelectByConditionRowBoundsMapper
-
根据example条件和RowBounds进行分页查询,该方法和selectByExampleAndRowBounds完全一样,只是名字改成了Condition
- selectByConditionAndRowBounds(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.ConditionProvider
-
根据Condition查询
- SelectByConditionMapper<T> - tk.mybatis.mapper.common.condition中的接口
-
通用Mapper接口,Condition查询
- SelectByConditionRowBoundsMapper<T> - tk.mybatis.mapper.common.rowbounds中的接口
-
通用Mapper接口,Condition查询
- selectByExample(Object) - 接口 中的方法tk.mybatis.mapper.common.example.SelectByExampleMapper
-
根据Example条件进行查询
- selectByExample(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.ExampleProvider
-
根据Example查询
- selectByExampleAndRowBounds(Object, RowBounds) - 接口 中的方法tk.mybatis.mapper.common.rowbounds.SelectByExampleRowBoundsMapper
-
根据example条件和RowBounds进行分页查询
- selectByExampleAndRowBounds(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.ExampleProvider
-
根据Example查询
- SelectByExampleMapper<T> - tk.mybatis.mapper.common.example中的接口
-
通用Mapper接口,Example查询
- SelectByExampleRowBoundsMapper<T> - tk.mybatis.mapper.common.rowbounds中的接口
-
通用Mapper接口,查询
- selectByIds(String) - 接口 中的方法tk.mybatis.mapper.common.ids.SelectByIdsMapper
-
根据主键字符串进行查询,类中只有存在一个带有@Id注解的字段
- selectByIds(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.IdsProvider
-
根据主键字符串进行查询,类中只有存在一个带有@Id注解的字段
- SelectByIdsMapper<T> - tk.mybatis.mapper.common.ids中的接口
-
通用Mapper接口,根据ids查询
- selectByPrimaryKey(Object) - 接口 中的方法tk.mybatis.mapper.common.base.select.SelectByPrimaryKeyMapper
-
根据主键字段进行查询,方法参数必须包含完整的主键属性,查询条件使用等号
- selectByPrimaryKey(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.base.BaseSelectProvider
-
根据主键进行查询
- SelectByPrimaryKeyMapper<T> - tk.mybatis.mapper.common.base.select中的接口
-
- selectByRowBounds(T, RowBounds) - 接口 中的方法tk.mybatis.mapper.common.rowbounds.SelectRowBoundsMapper
-
根据实体属性和RowBounds进行分页查询
- selectByRowBounds(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.base.BaseSelectProvider
-
查询
- selectColumns - 类 中的变量tk.mybatis.mapper.entity.Example
-
- selectCount(T) - 接口 中的方法tk.mybatis.mapper.common.base.select.SelectCountMapper
-
根据实体中的属性查询总数,查询条件使用等号
- selectCount(Class<?>) - 类 中的静态方法tk.mybatis.mapper.mapperhelper.SqlHelper
-
select count(x)
- selectCount(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.base.BaseSelectProvider
-
查询总数
- selectCountByCondition(Object) - 接口 中的方法tk.mybatis.mapper.common.condition.SelectCountByConditionMapper
-
根据Condition条件进行查询总数
- selectCountByCondition(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.ConditionProvider
-
根据Condition查询总数
- SelectCountByConditionMapper<T> - tk.mybatis.mapper.common.condition中的接口
-
通用Mapper接口,Condition查询
- selectCountByExample(Object) - 接口 中的方法tk.mybatis.mapper.common.example.SelectCountByExampleMapper
-
根据Example条件进行查询总数
- selectCountByExample(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.ExampleProvider
-
根据Example查询总数
- SelectCountByExampleMapper<T> - tk.mybatis.mapper.common.example中的接口
-
通用Mapper接口,Example查询
- selectCountExists(Class<?>) - 类 中的静态方法tk.mybatis.mapper.mapperhelper.SqlHelper
-
select case when count(x) > 0 then 1 else 0 end
- SelectCountMapper<T> - tk.mybatis.mapper.common.base.select中的接口
-
通用Mapper接口,查询
- SelectKeyGenerator - tk.mybatis.mapper.mapperhelper中的类
-
- SelectKeyGenerator(MappedStatement, boolean) - 类 的构造器tk.mybatis.mapper.mapperhelper.SelectKeyGenerator
-
- SelectMapper<T> - tk.mybatis.mapper.common.base.select中的接口
-
通用Mapper接口,查询
- selectOne(T) - 接口 中的方法tk.mybatis.mapper.common.base.select.SelectOneMapper
-
根据实体中的属性进行查询,只能有一个返回值,有多个结果是抛出异常,查询条件使用等号
- selectOne(MappedStatement) - 类 中的方法tk.mybatis.mapper.provider.base.BaseSelectProvider
-
查询
- SelectOneMapper<T> - tk.mybatis.mapper.common.base.select中的接口
-
通用Mapper接口,查询
- selectProperties(String...) - 类 中的方法tk.mybatis.mapper.entity.Example
-
指定要查询的属性列 - 这里会自动映射到表字段
- SelectRowBoundsMapper<T> - tk.mybatis.mapper.common.rowbounds中的接口
-
通用Mapper接口,查询
- setAndOr(String) - 类 中的方法tk.mybatis.mapper.entity.Example.Criterion
-
- setAndOr(String) - 类 中的方法tk.mybatis.mapper.entity.Example.GeneratedCriteria
-
- setBaseSelect(String) - 类 中的方法tk.mybatis.mapper.entity.EntityTable
-
- setBEFORE(boolean) - 类 中的方法tk.mybatis.mapper.entity.Config
-
- setCatalog(String) - 类 中的方法tk.mybatis.mapper.entity.Config
-
设置全局的catalog,默认为空,如果设置了值,操作表时的sql会是catalog.tablename
- setCatalog(String) - 类 中的方法tk.mybatis.mapper.entity.EntityTable
-
- setCheckExampleEntityClass(boolean) - 类 中的方法tk.mybatis.mapper.entity.Config
-
- setColumn(String) - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- setConfig(Config) - 类 中的方法tk.mybatis.mapper.mapperhelper.MapperHelper
-
设置通用Mapper配置
- setContext(Context) - 类 中的方法tk.mybatis.mapper.generator.MapperPlugin
-
- setCountProperty(String) - 类 中的方法tk.mybatis.mapper.entity.Example
-
指定 count(property) 查询属性
- setDistinct(boolean) - 类 中的方法tk.mybatis.mapper.entity.Example
-
- setEnableMethodAnnotation(boolean) - 类 中的方法tk.mybatis.mapper.entity.Config
-
- setEntityClassColumns(Set<EntityColumn>) - 类 中的方法tk.mybatis.mapper.entity.EntityTable
-
- setEntityClassPKColumns(Set<EntityColumn>) - 类 中的方法tk.mybatis.mapper.entity.EntityTable
-
- setForUpdate(boolean) - 类 中的方法tk.mybatis.mapper.entity.Example
-
- setGenerator(String) - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- setId(boolean) - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- setIDENTITY(String) - 类 中的方法tk.mybatis.mapper.entity.Config
-
主键自增回写方法,默认值MYSQL,详细说明请看文档
- setIdentity(boolean) - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- setInsertable(boolean) - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- setJavaType(Class<?>) - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- setJavaType(Class<?>) - 类 中的方法tk.mybatis.mapper.entity.EntityField
-
设置javaType
- setJdbcType(JdbcType) - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- setKeyColumns(List<String>) - 类 中的方法tk.mybatis.mapper.entity.EntityTable
-
- setKeyColumns(String) - 类 中的方法tk.mybatis.mapper.entity.EntityTable
-
- setKeyProperties(List<String>) - 类 中的方法tk.mybatis.mapper.entity.EntityTable
-
- setKeyProperties(String) - 类 中的方法tk.mybatis.mapper.entity.EntityTable
-
- setMapperHelper(MapperHelper) - 类 中的方法tk.mybatis.spring.mapper.MapperFactoryBean
-
- setMapperHelper(MapperHelper) - 类 中的方法tk.mybatis.spring.mapper.MapperScannerConfigurer
-
- setMarkerInterface(Class<?>) - 类 中的方法tk.mybatis.spring.mapper.MapperScannerConfigurer
-
- setName(String) - 类 中的方法tk.mybatis.mapper.entity.EntityTable
-
- setNotEmpty(boolean) - 类 中的方法tk.mybatis.mapper.entity.Config
-
- setOrder(String) - 类 中的方法tk.mybatis.mapper.entity.Config
-
主键自增回写方法执行顺序,默认AFTER,可选值为(BEFORE|AFTER)
- setOrderBy(String) - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- setOrderByClause(String) - 类 中的方法tk.mybatis.mapper.entity.EntityTable
-
- setOrderByClause(String) - 类 中的方法tk.mybatis.mapper.entity.Example
-
- setProperties(Properties) - 类 中的方法tk.mybatis.mapper.entity.Config
-
配置属性
- setProperties(Properties) - 类 中的方法tk.mybatis.mapper.generator.MapperPlugin
-
- setProperties(Properties) - 类 中的方法tk.mybatis.mapper.mapperhelper.MapperHelper
-
配置属性
- setProperties(Properties) - 类 中的方法tk.mybatis.spring.mapper.MapperScannerConfigurer
-
属性注入
- setProperty(String) - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- setResultType(MappedStatement, Class<?>) - 类 中的方法tk.mybatis.mapper.mapperhelper.MapperTemplate
-
设置返回值类型 - 为了让typeHandler在select时有效,改为设置resultMap
- setSchema(String) - 类 中的方法tk.mybatis.mapper.entity.Config
-
设置全局的schema,默认为空,如果设置了值,操作表时的sql会是schema.tablename
如果同时设置了catalog,优先使用catalog.tablename
- setSchema(String) - 类 中的方法tk.mybatis.mapper.entity.EntityTable
-
- setSeqFormat(String) - 类 中的方法tk.mybatis.mapper.entity.Config
-
序列的获取规则,使用{num}格式化参数,默认值为{0}.nextval,针对Oracle
可选参数一共3个,对应0,1,2,3分别为SequenceName,ColumnName, PropertyName,TableName
- setSequenceName(String) - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- setSqlSource(MappedStatement) - 类 中的方法tk.mybatis.mapper.mapperhelper.MapperHelper
-
重新设置SqlSource
执行该方法前必须使用isMapperMethod判断,否则msIdCache会空
- setSqlSource(MappedStatement, SqlSource) - 类 中的方法tk.mybatis.mapper.mapperhelper.MapperTemplate
-
重新设置SqlSource,同时判断如果是Jdbc3KeyGenerator,就设置为MultipleJdbc3KeyGenerator
- setSqlSource(MappedStatement) - 类 中的方法tk.mybatis.mapper.mapperhelper.MapperTemplate
-
重新设置SqlSource
- setStyle(Style) - 类 中的方法tk.mybatis.mapper.entity.Config
-
- setTable(EntityTable) - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- setTable(Table) - 类 中的方法tk.mybatis.mapper.entity.EntityTable
-
- setTableName(String) - 类 中的方法tk.mybatis.mapper.entity.Example
-
设置表名
- setTypeHandler(Class<? extends TypeHandler<?>>) - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- setUpdatable(boolean) - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- setUseSimpleType(boolean) - 类 中的方法tk.mybatis.mapper.entity.Config
-
- setUUID(String) - 类 中的方法tk.mybatis.mapper.entity.Config
-
设置UUID生成策略
配置UUID生成策略需要使用OGNL表达式
默认值32位长度:@java.util.UUID@randomUUID().toString().replace("-", "")
- setUuid(boolean) - 类 中的方法tk.mybatis.mapper.entity.EntityColumn
-
- SimpleTypeUtil - tk.mybatis.mapper.util中的类
-
参考 org.apache.ibatis.type.SimpleTypeRegistry
- SimpleTypeUtil() - 类 的构造器tk.mybatis.mapper.util.SimpleTypeUtil
-
- SpecialProvider - tk.mybatis.mapper.provider中的类
-
SpecialProvider实现类,特殊方法实现类
- SpecialProvider(Class<?>, MapperHelper) - 类 的构造器tk.mybatis.mapper.provider.SpecialProvider
-
- SqlHelper - tk.mybatis.mapper.mapperhelper中的类
-
拼常用SQL的工具类
- SqlHelper() - 类 的构造器tk.mybatis.mapper.mapperhelper.SqlHelper
-
- sqlMapDeleteByPrimaryKeyElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法tk.mybatis.mapper.generator.MapperPlugin
-
- sqlMapInsertElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法tk.mybatis.mapper.generator.MapperPlugin
-
- sqlMapInsertSelectiveElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法tk.mybatis.mapper.generator.MapperPlugin
-
- sqlMapSelectAllElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法tk.mybatis.mapper.generator.MapperPlugin
-
- sqlMapSelectByPrimaryKeyElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法tk.mybatis.mapper.generator.MapperPlugin
-
- sqlMapUpdateByPrimaryKeySelectiveElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法tk.mybatis.mapper.generator.MapperPlugin
-
- sqlMapUpdateByPrimaryKeyWithBLOBsElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法tk.mybatis.mapper.generator.MapperPlugin
-
- sqlMapUpdateByPrimaryKeyWithoutBLOBsElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法tk.mybatis.mapper.generator.MapperPlugin
-
- SqlReservedWords - tk.mybatis.mapper.util中的类
-
This class contains a somewhat comprehensive list of SQL reserved words.
- SqlServerMapper<T> - tk.mybatis.mapper.common中的接口
-
通用Mapper接口,SqlServerMapper独有的通用方法
- SqlServerProvider - tk.mybatis.mapper.provider中的类
-
SqlServerProvider实现类,特殊方法实现类
- SqlServerProvider(Class<?>, MapperHelper) - 类 的构造器tk.mybatis.mapper.provider.SqlServerProvider
-
- StringUtil - tk.mybatis.mapper.util中的类
-
Created by liuzh_3nofxnp on 2015/8/26.
- StringUtil() - 类 的构造器tk.mybatis.mapper.util.StringUtil
-
- Style - tk.mybatis.mapper.code中的枚举
-
字段转换方式
- supportMethod(String) - 类 中的方法tk.mybatis.mapper.mapperhelper.MapperTemplate
-
是否支持该通用方法
- supportMethod(String) - 类 中的方法tk.mybatis.mapper.provider.EmptyProvider
-