From d791d5e2d2ef0a57d1ec41a64d595c2c43b0730b Mon Sep 17 00:00:00 2001 From: think <1787994136@qq.com> Date: Thu, 16 Jan 2025 09:04:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=AD=90=E9=A1=B9=E7=9B=AEID?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../yunxi/mes/module/heli/dal/mysql/plan/PlanMapper.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mes-module-heli/mes-module-heli-biz/src/main/java/com/chanko/yunxi/mes/module/heli/dal/mysql/plan/PlanMapper.java b/mes-module-heli/mes-module-heli-biz/src/main/java/com/chanko/yunxi/mes/module/heli/dal/mysql/plan/PlanMapper.java index 3c40242..da372ca 100644 --- a/mes-module-heli/mes-module-heli-biz/src/main/java/com/chanko/yunxi/mes/module/heli/dal/mysql/plan/PlanMapper.java +++ b/mes-module-heli/mes-module-heli-biz/src/main/java/com/chanko/yunxi/mes/module/heli/dal/mysql/plan/PlanMapper.java @@ -29,7 +29,7 @@ import org.springframework.util.StringUtils; public interface PlanMapper extends BaseMapperX { - default List searchZXMMx(Long task_id,Long project_id) { + default List searchZXMMx(Long task_id,Long project_id,Long planSubId) { MPJLambdaWrapper query = new MPJLambdaWrapper<>(); query.selectAll(PlanDO.class) @@ -43,7 +43,7 @@ public interface PlanMapper extends BaseMapperX { .leftJoin(ProjectOrderSubDO.class, "d", ProjectOrderSubDO::getId, PlanSubDO::getProjectSubId) .leftJoin(CompositionDO.class, "e", CompositionDO::getId, ProjectOrderSubDO::getCompositionId) //.leftJoin(MouldTypeDO.class,"f",MouldTypeDO::getId,PlanSubDO::getMouldId) - + .eq(PlanSubDO::getId,planSubId) .eq(PlanDO::getId,task_id) .eq(PlanDO::getProjectId,project_id);