From 0ee9cf0938174798af956fc6ae301ef149fd8b6a Mon Sep 17 00:00:00 2001
From: heheng <heheng@123456>
Date: Tue, 10 Dec 2024 14:17:39 +0800
Subject: [PATCH] 修改业务逻辑
---
expert-system/src/main/resources/mapper/system/ApplyRecordMapper.xml | 7 ++-----
1 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/expert-system/src/main/resources/mapper/system/ApplyRecordMapper.xml b/expert-system/src/main/resources/mapper/system/ApplyRecordMapper.xml
index 4ddf3f0..e8be75c 100644
--- a/expert-system/src/main/resources/mapper/system/ApplyRecordMapper.xml
+++ b/expert-system/src/main/resources/mapper/system/ApplyRecordMapper.xml
@@ -19,11 +19,8 @@
</sql>
<select id="selectApplyRecordList" parameterType="ApplyRecord" resultMap="ApplyRecordResult">
- <include refid="selectApplyRecordVo"/>
- <where>
- <if test="startTime != null "> and start_time = #{startTime}</if>
- <if test="endTime != null "> and end_time = #{endTime}</if>
- </where>
+ select id, start_time, end_time, create_by, create_time, update_by, update_time from apply_record
+ order by create_time desc
</select>
<select id="selectApplyRecordById" parameterType="Long" resultMap="ApplyRecordResult">
--
Gitblit v1.9.2