From cbf59bc751ce7edb4a1ec72629312dd30e1ca3e9 Mon Sep 17 00:00:00 2001 From: Fancy <Fancy.fx@outlook.com> Date: 星期二, 03 九月 2024 15:40:12 +0800 Subject: [PATCH] fix station update without line id --- pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPr/PrAssemblyPlanMapper.java | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPr/PrAssemblyPlanMapper.java b/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPr/PrAssemblyPlanMapper.java index f14d6d1..6d4ea68 100644 --- a/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPr/PrAssemblyPlanMapper.java +++ b/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPr/PrAssemblyPlanMapper.java @@ -1,5 +1,6 @@ package com.dy.pmsGlobal.daoPr; +import cn.hutool.json.JSONObject; import com.dy.pmsGlobal.pojoPr.PrAssemblyPlan; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; @@ -39,7 +40,7 @@ PrAssemblyPlan selectByDeviceNo(@Param("proCode") String proCode,@Param("batchNumber") String batchNumber); Long countByPlanIdAndNodeId(@Param("planId") Long planId,@Param("nodeId") Long nodeId); - List<Map<String,Object>> selectByPlanName(@Param("planName") String planName); + List<JSONObject> selectByPlanName(@Param("planName") String planName); List<PrAssemblyPlan> selectAssyPlanList(PrAssemblyPlan params); -- Gitblit v1.8.0