问题背景: 一,项目中使用了MybatisPlus 拦截器 @Bean public ISqlInjector sqlInjector(){ return new LogicSqlInjector(); } 在执行逻辑删除时,使用了mybatisPlus的方法 EnumValue enumValue = enumValueManager.getById(enumValueDTO.getId()); if (Objects.isNull(enumValue)) { throw new BusinessExceptio…