From 84aa7e8a0d505c174530a3102f23d9d8ecdb7313 Mon Sep 17 00:00:00 2001
From: yuan <123@>
Date: 星期三, 12 八月 2026 12:39:05 +0800
Subject: [PATCH] fix: 清理多余配置文件
---
src/main/resources/mapper/production/ProductionOrderMapper.xml | 8 +++-----
1 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/src/main/resources/mapper/production/ProductionOrderMapper.xml b/src/main/resources/mapper/production/ProductionOrderMapper.xml
index 67cc55b..c5c9e3a 100644
--- a/src/main/resources/mapper/production/ProductionOrderMapper.xml
+++ b/src/main/resources/mapper/production/ProductionOrderMapper.xml
@@ -134,7 +134,7 @@
<include refid="ProductionOrderVoColumns" />
<include refid="ProductionOrderVoFrom" />
<include refid="ProductionOrderWhere" />
- order by po.id desc
+ order by po.nps_no desc
</select>
<select id="listProductionOrder" resultMap="ProductionOrderVoResultMap">
@@ -232,10 +232,8 @@
and po.create_time < #{endTime}
</if>
</where>
- order by po.id desc
- <if test="size != null and size >= 0">
- limit #{offset}, #{size}
- </if>
+ order by po.nps_no desc
+ limit #{offset}, #{size}
</select>
<select id="countHomeOrderProgress" resultType="java.lang.Long">
--
Gitblit v1.9.3