- save(T) - Method in class tech.msop.mybatis.service.impl.SuperServiceImpl
-
- saveBatch(Collection<T>, int) - Method in class tech.msop.mybatis.service.impl.SuperServiceImpl
-
- saveIdempotency(T, DistributedLock, String, Wrapper<T>, String) - Method in class tech.msop.mybatis.service.impl.SuperServiceImpl
-
- saveIdempotency(T, DistributedLock, String, Wrapper<T>) - Method in class tech.msop.mybatis.service.impl.SuperServiceImpl
-
- saveIdempotency(T, DistributedLock, String, Wrapper<T>, String) - Method in interface tech.msop.mybatis.service.ISuperService
-
幂等性新增记录
例子如下:
String username = sysUser.getUsername();
boolean result = super.saveIdempotency(sysUser, lock
, LOCK_KEY_USERNAME+username
, new QueryWrapper().eq("username", username));
- saveIdempotency(T, DistributedLock, String, Wrapper<T>) - Method in interface tech.msop.mybatis.service.ISuperService
-
- saveIgnore(T) - Method in class tech.msop.mybatis.service.impl.SuperServiceImpl
-
- saveIgnore(T) - Method in interface tech.msop.mybatis.service.ISuperService
-
插入如果中已经存在相同的记录,则忽略当前新数据
- saveIgnoreBatch(Collection<T>, int) - Method in class tech.msop.mybatis.service.impl.SuperServiceImpl
-
- saveIgnoreBatch(Collection<T>, int) - Method in interface tech.msop.mybatis.service.ISuperService
-
插入(批量),插入如果中已经存在相同的记录,则忽略当前新数据
- saveOrUpdate(T) - Method in class tech.msop.mybatis.service.impl.SuperServiceImpl
-
- saveOrUpdateBatch(Collection<T>, int) - Method in class tech.msop.mybatis.service.impl.SuperServiceImpl
-
- saveOrUpdateIdempotency(T, DistributedLock, String, Wrapper<T>, String) - Method in class tech.msop.mybatis.service.impl.SuperServiceImpl
-
- saveOrUpdateIdempotency(T, DistributedLock, String, Wrapper<T>) - Method in class tech.msop.mybatis.service.impl.SuperServiceImpl
-
- saveOrUpdateIdempotency(T, DistributedLock, String, Wrapper<T>, String) - Method in interface tech.msop.mybatis.service.ISuperService
-
幂等性新增或更新记录
例子如下:
String username = sysUser.getUsername();
boolean result = super.saveOrUpdateIdempotency(sysUser, lock
, LOCK_KEY_USERNAME+username
, new QueryWrapper().eq("username", username));
- saveOrUpdateIdempotency(T, DistributedLock, String, Wrapper<T>) - Method in interface tech.msop.mybatis.service.ISuperService
-
- saveReplace(T) - Method in class tech.msop.mybatis.service.impl.SuperServiceImpl
-
- saveReplace(T) - Method in interface tech.msop.mybatis.service.ISuperService
-
表示插入替换数据,需求表中有PrimaryKey,或者unique索引,如果数据库已经存在数据,则用新数据替换,如果没有数据效果则和insert into一样;
- saveReplaceBatch(Collection<T>, int) - Method in class tech.msop.mybatis.service.impl.SuperServiceImpl
-
- saveReplaceBatch(Collection<T>, int) - Method in interface tech.msop.mybatis.service.ISuperService
-
插入(批量),表示插入替换数据,需求表中有PrimaryKey,或者unique索引,如果数据库已经存在数据,则用新数据替换,如果没有数据效果则和insert into一样;
- saveReplaceBatch(Collection<T>) - Method in interface tech.msop.mybatis.service.ISuperService
-
插入(批量),表示插入替换数据,需求表中有PrimaryKey,或者unique索引,如果数据库已经存在数据,则用新数据替换,如果没有数据效果则和insert into一样;
- sqlInjector() - Method in class tech.msop.mybatis.config.MybatisPlusConfiguration
-
sql 注入
- SqlKeyword - Class in tech.msop.mybatis.support
-
定义常用的 sql关键字
- SqlKeyword() - Constructor for class tech.msop.mybatis.support.SqlKeyword
-
- sqlLogInterceptor(MybatisPlusProperties) - Method in class tech.msop.mybatis.config.MybatisPlusConfiguration
-
sql 日志
- SqlLogInterceptor - Class in tech.msop.mybatis.plugins
-
打印可执行的 sql 日志
- SqlLogInterceptor(MybatisPlusProperties) - Constructor for class tech.msop.mybatis.plugins.SqlLogInterceptor
-
- statement_close(FilterChain, StatementProxy) - Method in class tech.msop.mybatis.plugins.SqlLogInterceptor
-
- SuperMapper<T> - Interface in tech.msop.mybatis.mapper
-
自定义Mapper
- SuperServiceImpl<M extends SuperMapper<T>,T extends BaseEntity> - Class in tech.msop.mybatis.service.impl
-
service实现父类
- SuperServiceImpl() - Constructor for class tech.msop.mybatis.service.impl.SuperServiceImpl
-
- supportsParameter(MethodParameter) - Method in class tech.msop.mybatis.resolver.PageArgumentResolver
-