Mybatis-Plus技巧
mybatis-plus的配置问题mybatis-plus的FeildStategy来判断参数是否为空作为条件12345# 最新版本策略配置mybatis-plus.global-config.db-config.insert-strategy=not_emptymybatis-plus.global-config.db-config.select-strategy=not_emptymybatis-plus.global-config.db-config.update-strategy=not_empty
123456mybatis-plus: global-config: db-config: insert-strategy: not_empty update-strategy: not_empty select-strategy: not_empty
处理器配置1mybatis-plus.type-handlers-package=com.gaer.arch.mybatis.plus.pa ...