自定义分类无法保存问题处理

This commit is contained in:
Chopper 2021-06-18 10:27:33 +08:00
parent fbcd5b7470
commit daa6236b37

View File

@ -17,7 +17,6 @@ import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import lombok.RequiredArgsConstructor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@ -165,6 +164,8 @@ public class CategoryServiceImpl extends ServiceImpl<CategoryMapper, Category> i
Category parentCategory = this.getById(category.getParentId());
category.setDeleteFlag(parentCategory.getDeleteFlag());
}
save(category);
//清除缓存
removeCache();
return true;
}