From 03dc0bda693feaeb2fa684b70db52feea8ea65a7 Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: Tue, 06 May 2025 13:37:01 +0800
Subject: [PATCH] 增加专家导出字段
---
expert-system/src/main/resources/mapper/system/EvaluationMapper.xml | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/expert-system/src/main/resources/mapper/system/EvaluationMapper.xml b/expert-system/src/main/resources/mapper/system/EvaluationMapper.xml
index fff4cda..1e00355 100644
--- a/expert-system/src/main/resources/mapper/system/EvaluationMapper.xml
+++ b/expert-system/src/main/resources/mapper/system/EvaluationMapper.xml
@@ -23,12 +23,14 @@
<select id="selectEvaluationList" parameterType="Evaluation" resultMap="EvaluationResult">
<include refid="selectEvaluationVo"/>
- <where>
+ <where>
+ and del_flag = 0
<if test="score != null "> and score = #{score}</if>
<if test="content != null and content != ''"> and content = #{content}</if>
<if test="scoreType != null and scoreType != ''"> and score_type = #{scoreType}</if>
<if test="version != null "> and version = #{version}</if>
</where>
+ order by create_time desc
</select>
<select id="selectEvaluationById" parameterType="Long" resultMap="EvaluationResult">
--
Gitblit v1.9.2