From 06b6428cc7ce0c1ffc2bd95a1215e19e0a7f22b5 Mon Sep 17 00:00:00 2001 From: wangzhijiang Date: Wed, 29 Mar 2023 11:46:49 +0800 Subject: [PATCH] =?UTF-8?q?67523=20=E6=B3=95=E8=A7=84=E6=B8=85=E5=8D=95?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E6=9F=A5=E8=AF=A2=E6=9D=83=E9=99=90=EF=BC=8C?= =?UTF-8?q?=E6=B3=95=E8=A7=84=E3=80=81=E6=8E=A5=E5=8F=A3=E4=BA=BA=E3=80=81?= =?UTF-8?q?=E8=AE=BE=E8=AE=A1=E6=88=96=E9=AA=8C=E8=AF=81=E8=B4=A3=E4=BB=BB?= =?UTF-8?q?=E4=BA=BA=20=20=E5=8F=AA=E8=A6=81=E6=9C=89=E4=B8=AA=E4=B8=80?= =?UTF-8?q?=E5=8C=85=E5=90=AB=E6=99=AE=E9=80=9A=E7=94=A8=E6=88=B7=E5=B0=B1?= =?UTF-8?q?=E5=8F=AF=E4=BB=A5=E7=9C=8B=E5=88=B0=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/ProjectLawsInventoryEOServiceImpl.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/project/service/impl/ProjectLawsInventoryEOServiceImpl.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/project/service/impl/ProjectLawsInventoryEOServiceImpl.java index 4b6431dae..14b4bc427 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/project/service/impl/ProjectLawsInventoryEOServiceImpl.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/project/service/impl/ProjectLawsInventoryEOServiceImpl.java @@ -1117,7 +1117,9 @@ public class ProjectLawsInventoryEOServiceImpl extends ServiceImpl{ queryWrapper.eq("regulation_owner_id",currentUser.getId()). - or().eq("homologation_engineer_id",currentUser.getId()); + or().eq("engineering_interface_person",currentUser.getId()). + or().eq("design_duty_id",currentUser.getId()). + or().eq("verify_duty_id",currentUser.getId()); }); } List result = super.baseMapper.selectList(projectLawsInventoryEOQueryWrapper);