From 8d90833250abee5951572659e9a192f2487cd704 Mon Sep 17 00:00:00 2001
From: zhang <zc857179121@qq.com>
Date: 星期一, 03 十一月 2025 09:30:52 +0800
Subject: [PATCH] 标准wms2.0
---
src/main/java/com/zy/asrs/service/impl/WrkMastServiceImpl.java | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/src/main/java/com/zy/asrs/service/impl/WrkMastServiceImpl.java b/src/main/java/com/zy/asrs/service/impl/WrkMastServiceImpl.java
index 3b7144d..18af8bc 100644
--- a/src/main/java/com/zy/asrs/service/impl/WrkMastServiceImpl.java
+++ b/src/main/java/com/zy/asrs/service/impl/WrkMastServiceImpl.java
@@ -4,6 +4,7 @@
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.core.common.Cools;
import com.zy.asrs.entity.WrkMast;
+import com.zy.asrs.entity.result.FindLocNoAttributeVo;
import com.zy.asrs.mapper.WrkMastMapper;
import com.zy.asrs.service.WrkMastService;
import lombok.extern.slf4j.Slf4j;
@@ -46,8 +47,15 @@
}
@Override
- public int selectWrkMastBareBoardStaNo(Integer ioType,Integer staNo) {
- return this.baseMapper.selectWrkMastBareBoardStaNo(ioType,staNo);
+ public int selectWrkMastBareBoardStaNo(Integer ioType, Integer staNo) {
+ return this.baseMapper.selectWrkMastBareBoardStaNo(ioType, staNo);
}
+ @Override
+ public List<WrkMast> selectWrkMastWrkDetl(Integer ioType, FindLocNoAttributeVo findLocNoAttributeVo, Integer crnNo) {
+ return this.baseMapper.selectWrkMastWrkDetl(ioType, findLocNoAttributeVo.getMatnr(), findLocNoAttributeVo.getBatch(), findLocNoAttributeVo.getBrand()
+ , findLocNoAttributeVo.getStandby1(), findLocNoAttributeVo.getStandby2(), findLocNoAttributeVo.getStandby3()
+ , findLocNoAttributeVo.getBoxType1(), findLocNoAttributeVo.getBoxType2(), findLocNoAttributeVo.getBoxType3()
+ , crnNo);
+ }
}
--
Gitblit v1.9.1