diff --git a/tamguo-mms/src/main/java/com/tamguo/web/BookCategoryController.java b/tamguo-mms/src/main/java/com/tamguo/web/BookCategoryController.java index 29390e8..d3b1ef7 100644 --- a/tamguo-mms/src/main/java/com/tamguo/web/BookCategoryController.java +++ b/tamguo-mms/src/main/java/com/tamguo/web/BookCategoryController.java @@ -1,63 +1,75 @@ package com.tamguo.web; import java.util.List; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Controller; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.ResponseBody; - -import com.alibaba.druid.util.StringUtils; -import com.alibaba.fastjson.JSONArray; -import com.alibaba.fastjson.JSONObject; -import com.baomidou.mybatisplus.mapper.Condition; -import com.tamguo.common.utils.Result; -import com.tamguo.modules.book.model.BookCategoryEntity; -import com.tamguo.modules.book.service.IBookCategoryService; +import org.slf4j.Logger; // 导入日志记录器接口 +import org.slf4j.LoggerFactory; // 导入日志工厂类 +import org.springframework.beans.factory.annotation.Autowired; // 导入自动注入注解 +import org.springframework.stereotype.Controller; // 导入控制器注解 +import org.springframework.web.bind.annotation.RequestMapping; // 导入请求映射注解 +import org.springframework.web.bind.annotation.RequestMethod; // 导入请求方法注解 +import org.springframework.web.bind.annotation.ResponseBody; // 导入响应体注解 +import com.alibaba.druid.util.StringUtils; // 导入字符串工具类 +import com.alibaba.fastjson.JSONArray; // 导入 JSON 数组类 +import com.alibaba.fastjson.JSONObject; // 导入 JSON 对象类 +import com.baomidou.mybatisplus.mapper.Condition; // 导入条件构建器类 +import com.tamguo.modules.book.model.BookCategoryEntity; // 导入图书分类实体类 +import com.tamguo.modules.book.service.IBookCategoryService; // 导入图书分类服务接口 + +/** + * BookCategoryController 类,处理图书分类相关的请求 + */ @Controller public class BookCategoryController { - - private Logger logger = LoggerFactory.getLogger(getClass()); + + private Logger logger = LoggerFactory.getLogger(getClass()); // 创建日志记录器实例 @Autowired - private IBookCategoryService iBookCategoryService; - + private IBookCategoryService iBookCategoryService; // 自动注入图书分类服务实例 + + /** + * 处理获取图书分类的请求,通过 POST 方法 + * @param parentId 父分类 ID + * @return 返回处理结果 + */ @SuppressWarnings("unchecked") @RequestMapping(value = {"getBookCategory.html"}, method = RequestMethod.POST) @ResponseBody public Result getBookCategory(String parentId) { try { - List bookCategoryList = null; - if(StringUtils.isEmpty(parentId)) { - bookCategoryList = iBookCategoryService.selectList(Condition.create().eq("parent_id", "0")); - }else { - bookCategoryList = iBookCategoryService.selectList(Condition.create().eq("parent_id", parentId)); + List bookCategoryList = null; // 定义图书分类列表变量 + if(StringUtils.isEmpty(parentId)) { // 如果父分类 ID 为空 + bookCategoryList = iBookCategoryService.selectList(Condition.create().eq("parent_id", "0")); // 查询父分类为 0 的图书分类列表 + } else { + bookCategoryList = iBookCategoryService.selectList(Condition.create().eq("parent_id", parentId)); // 查询指定父分类 ID 的图书分类列表 } - - return Result.successResult(processBookCategoryList(bookCategoryList)); + + return Result.successResult(processBookCategoryList(bookCategoryList)); // 返回处理后的图书分类列表结果,并标记为成功 } catch (Exception e) { - logger.error(e.getMessage() , e); - return Result.failResult("查询失败!"); + logger.error(e.getMessage(), e); // 记录异常日志 + return Result.failResult("查询失败!"); // 返回失败结果及错误信息 } } - + + /** + * 处理图书分类列表,生成 JSON 数组 + * @param bookCategoryList 图书分类列表 + * @return 返回处理后的 JSON 数组 + */ @SuppressWarnings("unchecked") private JSONArray processBookCategoryList(List bookCategoryList) { - JSONArray entitys = new JSONArray(); - for(int i=0 ; i 0) { - entity.put("children", new JSONArray()); + entity.put("children", new JSONArray()); // 如果有子分类,设置子分类数组 } - entitys.add(entity); + entitys.add(entity); // 将当前分类对象添加到 JSON 数组中 } - return entitys; + return entitys; // 返回处理后的 JSON 数组 } -} +} \ No newline at end of file