删除分类完善

This commit is contained in:
SjS 2025-04-03 20:52:53 +08:00
parent a98e0e86a6
commit 66584feb4f
7 changed files with 54 additions and 32 deletions

View File

@ -73,7 +73,7 @@ public interface ArticleMapper
*/ */
public int deleteArticleByIds(Long[] ids); public int deleteArticleByIds(Long[] ids);
public ArticleVO selectChildrenByiId(Long id); public ArticleVO selectChildrenById(Long id);
ArticleVO selectArticleByCode(ArticleCategoryQuery articleCategoryQuery); ArticleVO selectArticleByCode(ArticleCategoryQuery articleCategoryQuery);
} }

View File

@ -47,10 +47,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where id = #{id} where id = #{id}
</select> </select>
<select id="selectChildrenByiId" resultType="com.ruoyi.bst.article.domain.ArticleVO"> <select id="selectChildrenById" resultType="com.ruoyi.bst.article.domain.ArticleVO">
<include refid="selectArticleVo"/> <include refid="selectArticleVo"/>
where id = #{categoryId} where id = #{categoryId}
</select> </select>
<select id="selectArticleByCode" resultType="com.ruoyi.bst.article.domain.ArticleVO"> <select id="selectArticleByCode" resultType="com.ruoyi.bst.article.domain.ArticleVO">
<include refid="selectArticleVo"/> <include refid="selectArticleVo"/>
where code = #{code} where code = #{code}

View File

@ -65,4 +65,6 @@ public interface ArticleService
ArticleVO selectChildrenByCategoryId(Long id); ArticleVO selectChildrenByCategoryId(Long id);
ArticleVO selectArticleByCode(ArticleCategoryQuery articleCategoryQuery); ArticleVO selectArticleByCode(ArticleCategoryQuery articleCategoryQuery);
ArticleVO selectArticleByCategoryId(Long id);
} }

View File

@ -130,11 +130,16 @@ public class ArticleServiceImpl implements ArticleService
@Override @Override
public ArticleVO selectChildrenByCategoryId(Long id) { public ArticleVO selectChildrenByCategoryId(Long id) {
return articleMapper.selectChildrenByiId(id); return articleMapper.selectChildrenById(id);
} }
@Override @Override
public ArticleVO selectArticleByCode(ArticleCategoryQuery articleCategoryQuery) { public ArticleVO selectArticleByCode(ArticleCategoryQuery articleCategoryQuery) {
return articleMapper.selectArticleByCode(articleCategoryQuery); return articleMapper.selectArticleByCode(articleCategoryQuery);
} }
@Override
public ArticleVO selectArticleByCategoryId(Long id) {
return articleMapper.selectChildrenById(id);
}
} }

View File

@ -64,13 +64,7 @@ public interface ArticleCategoryMapper
*/ */
int deleteArticleCategoryById(Long id); int deleteArticleCategoryById(Long id);
/**
* 批量删除文章分类
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteArticleCategoryByIds(Long[] ids);
/** /**
@ -82,10 +76,18 @@ public interface ArticleCategoryMapper
/** /**
* 查询子分类 * 查询子分类
* @param ids * @param id
* @return * @return
*/ */
List<Long> selectChildren(Long[] ids); List<Long> selectChildren(Long id);
/**
* 批量删除文章分类
*
* @param childrenIds 需要删除的数据主键集合
* @return 结果
*/
void deleteArticleCategoryByIds(List<Long> childrenIds);
} }

View File

@ -5,11 +5,14 @@ import java.util.*;
import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageHelper;
import com.ruoyi.bst.area.domain.AreaQuery; import com.ruoyi.bst.area.domain.AreaQuery;
import com.ruoyi.bst.area.domain.AreaVO; import com.ruoyi.bst.area.domain.AreaVO;
import com.ruoyi.bst.article.domain.ArticleVO;
import com.ruoyi.bst.article.service.ArticleService;
import com.ruoyi.bst.device.utils.DeviceUtil; import com.ruoyi.bst.device.utils.DeviceUtil;
import com.ruoyi.common.utils.DateUtils; import com.ruoyi.common.utils.DateUtils;
import com.ruoyi.common.utils.SecurityUtils; import com.ruoyi.common.utils.SecurityUtils;
import com.ruoyi.common.utils.ServiceUtil; import com.ruoyi.common.utils.ServiceUtil;
import com.ruoyi.common.utils.collection.CollectionUtils; import com.ruoyi.common.utils.collection.CollectionUtils;
import org.checkerframework.checker.units.qual.A;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.ruoyi.bst.articleCategory.mapper.ArticleCategoryMapper; import com.ruoyi.bst.articleCategory.mapper.ArticleCategoryMapper;
@ -31,6 +34,9 @@ public class ArticleCategoryServiceImpl implements ArticleCategoryService
@Autowired @Autowired
private ArticleCategoryMapper articleCategoryMapper; private ArticleCategoryMapper articleCategoryMapper;
@Autowired
private ArticleService articleService;
/** /**
* 查询文章分类 * 查询文章分类
* *
@ -110,6 +116,11 @@ public class ArticleCategoryServiceImpl implements ArticleCategoryService
return articleCategoryMapper.updateArticleCategory(articleCategory); return articleCategoryMapper.updateArticleCategory(articleCategory);
} }
@Override
public int deleteArticleCategoryByIds(Long[] ids) {
return 0;
}
private Boolean hasParent(Long id){ private Boolean hasParent(Long id){
Long parentId = selectArticleCategoryById(id).getParentId(); Long parentId = selectArticleCategoryById(id).getParentId();
if (parentId != null){ if (parentId != null){
@ -123,30 +134,31 @@ public class ArticleCategoryServiceImpl implements ArticleCategoryService
* @param ids 需要删除的文章分类主键 * @param ids 需要删除的文章分类主键
* @return 结果 * @return 结果
*/ */
@Override // @Override
@Transactional // @Transactional
public int deleteArticleCategoryByIds(Long[] ids) // public int deleteArticleCategoryByIds(List<Long> ids)
{ // {
List<Long> cids = articleCategoryMapper.selectChildren(ids); //
List<Long> allIdsToDelete = new ArrayList<>(); // return articleCategoryMapper.deleteArticleCategoryByIds(ids);
allIdsToDelete.addAll(cids); // }
allIdsToDelete.addAll(Arrays.asList(ids));
if (!allIdsToDelete.isEmpty()){
return articleCategoryMapper.deleteArticleCategoryByIds(ids);
}
return 0;
}
/** /**
* 删除文章分类信息 * 删除文章分类信息
* *
* @param id 文章分类主键 * @param categoryId 文章分类主键
* @return 结果 * @return 结果
*/ */
@Override @Override
public int deleteArticleCategoryById(Long id) public int deleteArticleCategoryById(Long categoryId)
{ {
return articleCategoryMapper.deleteArticleCategoryById(id); List<Long> childrenIds = articleCategoryMapper.selectChildren(categoryId);
if (childrenIds != null){
articleCategoryMapper.deleteArticleCategoryByIds(childrenIds);
}
ArticleVO articleVO = articleService.selectArticleByCategoryId(categoryId);
if (articleVO != null){
return 0;
}
return articleCategoryMapper.deleteArticleCategoryById(categoryId);
} }
} }

View File

@ -92,9 +92,9 @@ public class ArticleCategoryController extends BaseController
*/ */
@PreAuthorize("@ss.hasPermi('bst:articleCategory:remove')") @PreAuthorize("@ss.hasPermi('bst:articleCategory:remove')")
@Log(title = "文章分类", businessType = BusinessType.DELETE) @Log(title = "文章分类", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}") @DeleteMapping("/{id}")
public AjaxResult remove(@PathVariable Long[] ids) public AjaxResult remove(@PathVariable Long id)
{ {
return toAjax(articleCategoryService.deleteArticleCategoryByIds(ids)); return success(articleCategoryService.deleteArticleCategoryById(id));
} }
} }