From 6879ca54ad1315e738f5f3b760eff929d730d838 Mon Sep 17 00:00:00 2001
From: heheng <heheng@123456>
Date: Thu, 05 Dec 2024 08:57:07 +0800
Subject: [PATCH] 修改及增加功能
---
expert-system/src/main/resources/mapper/system/ProjectManagementMapper.xml | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/expert-system/src/main/resources/mapper/system/ProjectManagementMapper.xml b/expert-system/src/main/resources/mapper/system/ProjectManagementMapper.xml
index bcbc067..3b8cf54 100644
--- a/expert-system/src/main/resources/mapper/system/ProjectManagementMapper.xml
+++ b/expert-system/src/main/resources/mapper/system/ProjectManagementMapper.xml
@@ -92,6 +92,7 @@
<if test="evaluationState != null "> and evaluation_state = #{evaluationState}</if>
<if test="expertNum != null "> and expert_num = #{expertNum}</if>
</where>
+ order by create_time desc
</select>
<select id="selectProjectManagementById" parameterType="Long" resultMap="ProjectManagementResult">
@@ -211,6 +212,7 @@
<if test="projectCheckTime != null "> and a.project_check_time = #{projectCheckTime}</if>
<if test="projectName != null and projectName != ''"> and a.project_name like concat('%', #{projectName}, '%')</if>
<if test="evaluationState != null "> and a.evaluation_state = #{evaluationState}</if>
+ order by a.create_time desc
</select>
<select id="getDataNum" parameterType="Long" resultType="Integer">
--
Gitblit v1.9.2