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 | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/src/main/resources/mapper/modules/AiProductQuestionMapper.xml b/src/main/resources/mapper/modules/AiProductQuestionMapper.xml
index 7b84a99..fe5c0cc 100644
--- a/src/main/resources/mapper/modules/AiProductQuestionMapper.xml
+++ b/src/main/resources/mapper/modules/AiProductQuestionMapper.xml
@@ -3,7 +3,12 @@
<mapper namespace="cc.mrbird.febs.ai.mapper.AiProductQuestionMapper">
<select id="selectJobChildPage" resultType="cc.mrbird.febs.ai.res.AdminQuestionInfoVo">
- select a.id
+ 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
--
Gitblit v1.9.1