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 | 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