From d0af197200c08e13b8bd78cdcb5e7d067feb773f Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期四, 25 十二月 2025 13:26:31 +0800
Subject: [PATCH] feat(production): 接口修改
---
src/main/resources/mapper/production/ProcessRouteItemMapper.xml | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/src/main/resources/mapper/production/ProcessRouteItemMapper.xml b/src/main/resources/mapper/production/ProcessRouteItemMapper.xml
index 54a5e04..0ec8393 100644
--- a/src/main/resources/mapper/production/ProcessRouteItemMapper.xml
+++ b/src/main/resources/mapper/production/ProcessRouteItemMapper.xml
@@ -16,7 +16,11 @@
select pri.*,
pr.description ,
pp.name as process_name,
- pm.speculative_trading_name
+ pm.speculative_trading_name,
+ pm.product_id,
+ pm.model,
+ pm.product_name,
+ pm.unit
from
process_route_item pri
left join product_model pm on pri.product_model_id = pm.id
@@ -24,7 +28,6 @@
left join process_route pr on pr.id = pri.route_id
where
pri.route_id = #{c.routeId}
-
-
+ order by pri.id
</select>
</mapper>
--
Gitblit v1.9.3