From 4b62aeaa85b5700217b8130903342a8fb27ac453 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Thu, 12 Feb 2026 16:10:22 +0800
Subject: [PATCH] feat(ai): 添加产品问答管理功能的题目详情展示
---
src/main/resources/mapper/modules/AiProductQuestionMapper.xml | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mapper/modules/AiProductQuestionMapper.xml b/src/main/resources/mapper/modules/AiProductQuestionMapper.xml
index a00a1a1..fe5c0cc 100644
--- a/src/main/resources/mapper/modules/AiProductQuestionMapper.xml
+++ b/src/main/resources/mapper/modules/AiProductQuestionMapper.xml
@@ -1,4 +1,17 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="cc.mrbird.febs.ai.mapper.AiProductQuestionMapper">
+
+ <select id="selectJobChildPage" resultType="cc.mrbird.febs.ai.res.AdminQuestionInfoVo">
+ select
+ a.product_question_id id,
+ a.title,
+ a.answer,
+ a.correct_answer,
+ a.answer_analysis
+ from ai_product_question_item a
+ where a.job_id = #{record.id}
+ ORDER BY a.title DESC
+ </select>
+
</mapper>
\ No newline at end of file
--
Gitblit v1.9.1