From 039e200d3f99d9e644cda0417e84af16b96103e2 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Wed, 25 Feb 2026 16:13:41 +0800
Subject: [PATCH] feat(fileUpload): 更新文件上传功能以改进文件命名和显示
---
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