方法1234// 根据 whereWrapper 条件,更新记录int update(@Param(Constants.ENTITY) T updateEntity, @Param(Constants.WRAPPER) Wrapper<T> whereWrapper);// 根据 ID 修改int updateById(@Param(Constants.ENTITY) T entity); 测试代码update12345678@Testvoid update() { UpdateWrapper<BlogType> blogTypeUpdateWrapper = new UpdateWrapper<>(); blogTypeUpdateWrapper.eq("name", "spring"); BlogType blogType = new BlogType(); blogType.setSortNum(111); blogTypeMapper.update(blogType, blogTypeUpdateWrapper);} updateById12345678@Testvoid updateById() { BlogType blogType = new BlogType(); blogType.setId(34); blogType.setName("222"); blogType.setSortNum(222); blogTypeMapper.updateById(blogType);}