跳过导航链接
B C D G I L M P R S T U V 

B

BaseDO - pro.haichuang.framework.mybatis.domain中的类
DO基类 该类为 [DO] 层基类, 所有 [DO] 层必须继承此类 该类中指定了映射到数据库中每张表的 id ID / createTime 创建时间 / modifyTime 最后修改时间
BaseDO() - 类 的构造器pro.haichuang.framework.mybatis.domain.BaseDO
 
BaseService<T extends BaseDO> - pro.haichuang.framework.mybatis.service中的接口
MybatisService基类 该类为 [MybatisService] 基类, 所有 [DO] 层关联 [Service] 必须继承该类 该类对 [MybatisPlus] 自带的 IService 进行了进一步的封装, 增强业务效果, 项目中均采用该类的方法以替代 IService 中的方法
BaseServiceImpl<M extends com.baomidou.mybatisplus.core.mapper.BaseMapper<T>,T extends BaseDO> - pro.haichuang.framework.mybatis.service中的类
封装MybatisServiceImpl 该类为 BaseService 实现类, 与 BaseService 联合使用, 所有 [DO] 层 [Service] 实现必须继承该类, 以替代 [Mybatis] 中的 ServiceImpl
BaseServiceImpl() - 类 的构造器pro.haichuang.framework.mybatis.service.BaseServiceImpl
 

C

clearEntityDefaultParameterAndGet(T) - 接口 中的静态方法pro.haichuang.framework.mybatis.service.BaseService
清除实体类默认参数值
clearEntityDefaultParameterAndGet(Collection<T>) - 接口 中的静态方法pro.haichuang.framework.mybatis.service.BaseService
批量清除实体类默认参数值
clearEntityDefaultParameterAndGet(T, boolean, boolean, boolean) - 接口 中的静态方法pro.haichuang.framework.mybatis.service.BaseService
清除实体类默认参数值
clearEntityDefaultParameterAndGet(Collection<T>, boolean, boolean, boolean) - 接口 中的静态方法pro.haichuang.framework.mybatis.service.BaseService
批量清除实体类默认参数值
CodeBasicConfig - pro.haichuang.framework.mybatis.generate.config中的类
MyBatisPlus基本配置文件
CodeBasicConfig() - 类 的构造器pro.haichuang.framework.mybatis.generate.config.CodeBasicConfig
 
CodeBasicConfig.OutputType - pro.haichuang.framework.mybatis.generate.config中的枚举
输出包类型
CodeDataSourceConfig - pro.haichuang.framework.mybatis.generate.config中的类
MyBatisPlus数据源配置文件
CodeDataSourceConfig() - 类 的构造器pro.haichuang.framework.mybatis.generate.config.CodeDataSourceConfig
 
CodePackageConfig - pro.haichuang.framework.mybatis.generate.config中的类
MyBatisPlus包配置
CodePackageConfig() - 类 的构造器pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
converter(IPage<T>) - 类 中的静态方法pro.haichuang.framework.mybatis.converter.PageConverter
将Mybatis中的Page转换为Pageable 该方法转换结果数据对象类型与 IPage 中一致
converter(IPage<T>, Class<R>) - 类 中的静态方法pro.haichuang.framework.mybatis.converter.PageConverter
将Mybatis中的Page转换为Pageable 该方法转换结果数据对象类型为 toClass 类型(根据反射进行严格转换)
converter(IPage<T>, Function<T, R>) - 类 中的静态方法pro.haichuang.framework.mybatis.converter.PageConverter
将Mybatis中的Page转换为Pageable 该方法可以自定义转换 IPage 中的数据(原始数据与目标数据字段名称或类型不一致时) Example: PageConverter.converter(iPage, originData -> { // Do Something And Return });
converter(PageRequest, int, Collection<T>) - 类 中的静态方法pro.haichuang.framework.mybatis.converter.PageConverter
将PageRequest转换为Pageable 该方法可以组和 PageRequest 中的数据和形参数据
countByIdAndIgnore(Long) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
忽略ID获取数量
countByIdAndIgnore(Collection<Long>) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量忽略ID获取数量
countByIdAndValidate(Long) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证ID获取数量
countByIdAndValidate(Long, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证ID获取数量
countByIdAndValidate(Collection<Long>) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证ID获取数量
countByIdAndValidate(Collection<Long>, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证ID获取数量
CREATE_TIME - 类 中的静态变量pro.haichuang.framework.mybatis.domain.BaseDO
 
CREATE_TIME_CLASS - 类 中的静态变量pro.haichuang.framework.mybatis.domain.BaseDO
 

D

DEFAULT_SUPER_MAPPER_CLASS - 类 中的静态变量pro.haichuang.framework.mybatis.generate.MybatisGenerateCodeService
 
DEFAULT_SUPER_SERVICE_CLASS - 类 中的静态变量pro.haichuang.framework.mybatis.generate.MybatisGenerateCodeService
 
DEFAULT_SUPER_SERVICE_IMPL_CLASS - 类 中的静态变量pro.haichuang.framework.mybatis.generate.MybatisGenerateCodeService
 
doFilter(ServletRequest, ServletResponse, FilterChain) - 类 中的方法pro.haichuang.framework.mybatis.config.druid.advert.filter.DruidAdvertFilter
 
DruidAdvertConfig - pro.haichuang.framework.mybatis.config.druid.advert中的类
Druid广告拦截配置 该过滤器主要用于去掉 [druid] 网页中的底部广告内容
DruidAdvertConfig() - 类 的构造器pro.haichuang.framework.mybatis.config.druid.advert.DruidAdvertConfig
 
DruidAdvertFilter - pro.haichuang.framework.mybatis.config.druid.advert.filter中的类
Druid广告过滤器 该过滤器主要用于去掉 [druid] 网页中的底部广告内容
DruidAdvertFilter() - 类 的构造器pro.haichuang.framework.mybatis.config.druid.advert.filter.DruidAdvertFilter
 

G

generate(CodeBasicConfig, CodeDataSourceConfig, CodePackageConfig) - 类 中的方法pro.haichuang.framework.mybatis.generate.MybatisGenerateCodeService
代码生成
getAuthor() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeBasicConfig
 
getByIdAndIgnore(Long) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
忽略ID并获取DO
getByIdAndIgnoreOpt(Long) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
忽略ID并获取DO
getByIdAndValidate(Long) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证ID并获取DO
getByIdAndValidate(Long, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证ID并获取DO
getControllerPackageName() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
getCreateTime() - 类 中的方法pro.haichuang.framework.mybatis.domain.BaseDO
 
getDeepDeclareMethod(T, String, Class<?>...) - 接口 中的静态方法pro.haichuang.framework.mybatis.service.BaseService
获取实体类的方法
getDriver() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeDataSourceConfig
 
getEnable() - 类 中的方法pro.haichuang.framework.mybatis.config.properties.MybatisProperties
 
getEnableSwagger() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeBasicConfig
 
getEntityPackageName() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
getId() - 类 中的方法pro.haichuang.framework.mybatis.domain.BaseDO
 
getInclude() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeDataSourceConfig
 
getMapperPackageName() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
getMapperXmlPackageName() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
getModifyTime() - 类 中的方法pro.haichuang.framework.mybatis.domain.BaseDO
 
getOutputDir() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
getOutputPackage() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
getOutputType() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeBasicConfig
 
getParentModelName() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
getPassword() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeDataSourceConfig
 
getReasonPhrase() - 枚举 中的方法pro.haichuang.framework.mybatis.enums.error.MybatisGenerateErrorEnum
 
getReasonPhrase() - 枚举 中的方法pro.haichuang.framework.mybatis.enums.error.MybatisServiceErrorEnum
 
getServiceImplPackageName() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
getServicePackageName() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
getTablePrefix() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeDataSourceConfig
 
getUrl() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeDataSourceConfig
 
getUsername() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeDataSourceConfig
 
getVersion() - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeBasicConfig
 

I

ID - 类 中的静态变量pro.haichuang.framework.mybatis.domain.BaseDO
 
ID_CLASS - 类 中的静态变量pro.haichuang.framework.mybatis.domain.BaseDO
 
insertFill(MetaObject) - 类 中的方法pro.haichuang.framework.mybatis.config.MybatisPlusConfig
 
isExistsByIdAndIgnore(Long) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
忽略ID获取是否存在
isExistsByIdAndIgnore(Collection<Long>) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量忽略ID获取是否存在
isExistsByIdAndValidate(Long) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证ID获取是否存在
isExistsByIdAndValidate(Long, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证ID获取是否存在
isExistsByIdAndValidate(Collection<Long>) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证ID获取是否存在
isExistsByIdAndValidate(Collection<Long>, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证ID获取是否存在

L

listAndIgnore(Wrapper<T>) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
忽略结果并获取DO
listAndValidate(Wrapper<T>, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证IDs并获取DOs
listByIdAndIgnore(Collection<Long>) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
忽略IDs并获取DO
listByIdAndValidate(Collection<Long>) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证IDs并获取DOs
listByIdAndValidate(Wrapper<T>) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证IDs并获取DOs
listByIdAndValidate(Collection<Long>, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证IDs并获取DOs
listPageAndIgnore(PageRequest) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
忽略PageRequest并获取Pageable 默认根据 BaseDO.MODIFY_TIME 进行排序
listPageAndValidate(PageRequest) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证PageRequest并获取Pageable 默认根据 BaseDO.MODIFY_TIME 进行排序
listPageAndValidate(PageRequest, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证PageRequest并获取Pageable 默认根据 BaseDO.MODIFY_TIME 进行排序
LOGIC_DELETE - 类 中的静态变量pro.haichuang.framework.mybatis.domain.BaseDO
 
LOGIC_DELETE_CLASS - 类 中的静态变量pro.haichuang.framework.mybatis.domain.BaseDO
 

M

MODIFY_TIME - 类 中的静态变量pro.haichuang.framework.mybatis.domain.BaseDO
 
MODIFY_TIME_CLASS - 类 中的静态变量pro.haichuang.framework.mybatis.domain.BaseDO
 
MybatisAutoConfiguration - pro.haichuang.framework.mybatis.config.autoconfiguration中的类
Mybatis自动配置 该类为 hc-mybatis 模块核心自动配置类 可以在 yaml 配置文件中指定 MybatisProperties 中相关的属性
MybatisAutoConfiguration() - 类 的构造器pro.haichuang.framework.mybatis.config.autoconfiguration.MybatisAutoConfiguration
 
mybatisGenerateCode() - 类 中的方法pro.haichuang.framework.mybatis.config.autoconfiguration.MybatisAutoConfiguration
 
MybatisGenerateCodeService - pro.haichuang.framework.mybatis.generate中的类
MybatisPlus代码生成器 该类为 [MybatisPlus] 代码生成器服务, 自动将数据库表生成为 [Java] 代码 Danger: 代码生成器将自动覆盖原有文件, 推荐在生成之前做好代码备份, 如只需自动生成指定表则设置 CodeDataSourceConfig.setInclude(String...)
MybatisGenerateCodeService() - 类 的构造器pro.haichuang.framework.mybatis.generate.MybatisGenerateCodeService
 
MybatisGenerateErrorApplication - pro.haichuang.framework.mybatis.exception中的异常错误
Mybatis代码生成自定义异常
MybatisGenerateErrorApplication(MybatisGenerateErrorEnum) - 异常错误 的构造器pro.haichuang.framework.mybatis.exception.MybatisGenerateErrorApplication
 
MybatisGenerateErrorApplication(MybatisGenerateErrorEnum, String) - 异常错误 的构造器pro.haichuang.framework.mybatis.exception.MybatisGenerateErrorApplication
 
MybatisGenerateErrorEnum - pro.haichuang.framework.mybatis.enums.error中的枚举
MybatisPlus代码生成异常枚举 该类为 [MybatisPlus] 代码生成异常枚举
MybatisPlusConfig - pro.haichuang.framework.mybatis.config中的类
MybatisPlus配置 该类为 [MybatisPlus] 核心配置
MybatisPlusConfig() - 类 的构造器pro.haichuang.framework.mybatis.config.MybatisPlusConfig
 
mybatisPlusInterceptor() - 类 中的方法pro.haichuang.framework.mybatis.config.PageHelperConfig
 
MybatisProperties - pro.haichuang.framework.mybatis.config.properties中的类
Mybatis参数配置 该类为 hc-mybatis 核心的配置文件类 Example: # ========================= Haichuang Setting ========================= haichuang: mybatis: // 是否启用配置 enable: true
MybatisProperties() - 类 的构造器pro.haichuang.framework.mybatis.config.properties.MybatisProperties
 
MybatisServiceApplication - pro.haichuang.framework.mybatis.exception中的异常错误
MybatisService自定义异常
MybatisServiceApplication(MybatisServiceErrorEnum) - 异常错误 的构造器pro.haichuang.framework.mybatis.exception.MybatisServiceApplication
 
MybatisServiceApplication(MybatisServiceErrorEnum, String) - 异常错误 的构造器pro.haichuang.framework.mybatis.exception.MybatisServiceApplication
 
MybatisServiceErrorEnum - pro.haichuang.framework.mybatis.enums.error中的枚举
MybatisService异常枚举 该类为 [MybatisService] 层异常枚举

P

PageConverter - pro.haichuang.framework.mybatis.converter中的类
分页转换器 该类主要用于将各类参数转换为 Pageable
PageConverter() - 类 的构造器pro.haichuang.framework.mybatis.converter.PageConverter
 
PageHelperConfig - pro.haichuang.framework.mybatis.config中的类
PageHelper分页插件配置 该类为 [PageHelper] 分页插件核心配置
PageHelperConfig() - 类 的构造器pro.haichuang.framework.mybatis.config.PageHelperConfig
 
pro.haichuang.framework.mybatis.config - 程序包 pro.haichuang.framework.mybatis.config
Mybatis核心配置
pro.haichuang.framework.mybatis.config.autoconfiguration - 程序包 pro.haichuang.framework.mybatis.config.autoconfiguration
Mybatis核心配置-自动配置
pro.haichuang.framework.mybatis.config.druid.advert - 程序包 pro.haichuang.framework.mybatis.config.druid.advert
Mybatis核心配置-Druid
pro.haichuang.framework.mybatis.config.druid.advert.filter - 程序包 pro.haichuang.framework.mybatis.config.druid.advert.filter
Mybatis核心配置-Druid-过滤器
pro.haichuang.framework.mybatis.config.properties - 程序包 pro.haichuang.framework.mybatis.config.properties
Mybatis核心配置-配置文件自动装配
pro.haichuang.framework.mybatis.converter - 程序包 pro.haichuang.framework.mybatis.converter
Mybatis转换器
pro.haichuang.framework.mybatis.domain - 程序包 pro.haichuang.framework.mybatis.domain
Mybatis核心Domain
pro.haichuang.framework.mybatis.enums.error - 程序包 pro.haichuang.framework.mybatis.enums.error
Mybatis核心枚举-异常
pro.haichuang.framework.mybatis.exception - 程序包 pro.haichuang.framework.mybatis.exception
Mybatis核心自定义异常
pro.haichuang.framework.mybatis.generate - 程序包 pro.haichuang.framework.mybatis.generate
Mybatis自动代码生成
pro.haichuang.framework.mybatis.generate.config - 程序包 pro.haichuang.framework.mybatis.generate.config
Mybatis自动代码生成-配置文件自动装配
pro.haichuang.framework.mybatis.service - 程序包 pro.haichuang.framework.mybatis.service
Mybatis核心Service

R

removeByIdAndIgnore(Long) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
怒略实体类ID并删除
removeByIdAndIgnore(Collection<Long>) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量怒略实体类ID并删除
removeByIdAndValidate(Long) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证实体类ID并删除
removeByIdAndValidate(Long, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证实体类ID并删除
removeByIdAndValidate(Collection<Long>) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证实体类ID并删除
removeByIdAndValidate(Collection<Long>, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证实体类ID并删除
removeDruidAdvert(DruidStatProperties) - 类 中的方法pro.haichuang.framework.mybatis.config.druid.advert.DruidAdvertConfig
 
resolve(String) - 枚举 中的静态方法pro.haichuang.framework.mybatis.enums.error.MybatisGenerateErrorEnum
 
resolve(String) - 枚举 中的静态方法pro.haichuang.framework.mybatis.enums.error.MybatisServiceErrorEnum
 

S

saveAndIgnore(T) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
怒略实体类ID并保存
saveAndIgnore(Collection<T>) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量怒略验证实体类ID并保存
saveAndIgnore(Collection<T>, int) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量怒略验证实体类ID并保存
saveAndValidate(T) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证实体类ID并保存
saveAndValidate(T, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
验证实体类ID并保存
saveAndValidate(Collection<T>) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证实体类ID并保存
saveAndValidate(Collection<T>, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证实体类ID并保存
saveAndValidate(Collection<T>, int) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证实体类ID并保存
saveAndValidate(Collection<T>, int, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证实体类ID并保存
setAuthor(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeBasicConfig
 
setControllerPackageName(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
setCreateTime(LocalDateTime) - 类 中的方法pro.haichuang.framework.mybatis.domain.BaseDO
 
setDriver(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeDataSourceConfig
 
setEnable(Boolean) - 类 中的方法pro.haichuang.framework.mybatis.config.properties.MybatisProperties
 
setEnableSwagger(Boolean) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeBasicConfig
 
setEntityPackageName(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
setId(Long) - 类 中的方法pro.haichuang.framework.mybatis.domain.BaseDO
 
setInclude(String...) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeDataSourceConfig
 
setMapperPackageName(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
setMapperXmlPackageName(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
setModifyTime(LocalDateTime) - 类 中的方法pro.haichuang.framework.mybatis.domain.BaseDO
 
setOutputDir(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
setOutputPackage(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
setOutputType(CodeBasicConfig.OutputType) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeBasicConfig
 
setParentModelName(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
setPassword(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeDataSourceConfig
 
setServiceImplPackageName(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
setServicePackageName(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodePackageConfig
 
setTablePrefix(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeDataSourceConfig
 
setUrl(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeDataSourceConfig
 
setUsername(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeDataSourceConfig
 
setVersion(String) - 类 中的方法pro.haichuang.framework.mybatis.generate.config.CodeBasicConfig
 

T

toString() - 类 中的方法pro.haichuang.framework.mybatis.domain.BaseDO
 
toString() - 枚举 中的方法pro.haichuang.framework.mybatis.enums.error.MybatisGenerateErrorEnum
 
toString() - 枚举 中的方法pro.haichuang.framework.mybatis.enums.error.MybatisServiceErrorEnum
 
toUnderlineCase(String) - 接口 中的静态方法pro.haichuang.framework.mybatis.service.BaseService
简易驼峰转下划线

U

updateByIdAndIgnore(T) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
怒略验证实体类ID并更新
updateByIdAndIgnore(Collection<T>) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证实体类ID并更新
updateByIdAndIgnore(Collection<T>, int) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证实体类ID并更新
updateByIdAndValidate(T) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证实体类ID并更新
updateByIdAndValidate(T, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证实体类ID并更新
updateByIdAndValidate(Collection<T>) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证实体类ID并更新
updateByIdAndValidate(Collection<T>, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证实体类ID并更新
updateByIdAndValidate(Collection<T>, int) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证实体类ID并更新
updateByIdAndValidate(Collection<T>, int, String) - 接口 中的方法pro.haichuang.framework.mybatis.service.BaseService
批量验证实体类ID并更新
updateFill(MetaObject) - 类 中的方法pro.haichuang.framework.mybatis.config.MybatisPlusConfig
 

V

validateIdExistsAndGetIdMethod(T) - 接口 中的静态方法pro.haichuang.framework.mybatis.service.BaseService
验证ID是否存在并获取ID方法
value() - 枚举 中的方法pro.haichuang.framework.mybatis.enums.error.MybatisGenerateErrorEnum
 
value() - 枚举 中的方法pro.haichuang.framework.mybatis.enums.error.MybatisServiceErrorEnum
 
valueOf(String) - 枚举 中的静态方法pro.haichuang.framework.mybatis.enums.error.MybatisGenerateErrorEnum
返回带有指定名称的该类型的枚举常量。
valueOf(String) - 枚举 中的静态方法pro.haichuang.framework.mybatis.enums.error.MybatisServiceErrorEnum
返回带有指定名称的该类型的枚举常量。
valueOf(String) - 枚举 中的静态方法pro.haichuang.framework.mybatis.generate.config.CodeBasicConfig.OutputType
返回带有指定名称的该类型的枚举常量。
values() - 枚举 中的静态方法pro.haichuang.framework.mybatis.enums.error.MybatisGenerateErrorEnum
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
values() - 枚举 中的静态方法pro.haichuang.framework.mybatis.enums.error.MybatisServiceErrorEnum
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
values() - 枚举 中的静态方法pro.haichuang.framework.mybatis.generate.config.CodeBasicConfig.OutputType
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
B C D G I L M P R S T U V 
跳过导航链接

Copyright © 2021 HaiChuang Inc.. All rights reserved.