From 2cebd39fd1514c991da647f08124e18a0b02abe9 Mon Sep 17 00:00:00 2001
From: lsh <lsh123456>
Date: 星期三, 26 六月 2024 15:19:44 +0800
Subject: [PATCH] #
---
src/main/java/com/zy/asrs/mapper/WrkMastExecuteMapper.java | 15 ++++++++++++++-
1 files changed, 14 insertions(+), 1 deletions(-)
diff --git a/src/main/java/com/zy/asrs/mapper/WrkMastExecuteMapper.java b/src/main/java/com/zy/asrs/mapper/WrkMastExecuteMapper.java
index 810ebd6..a87b6de 100644
--- a/src/main/java/com/zy/asrs/mapper/WrkMastExecuteMapper.java
+++ b/src/main/java/com/zy/asrs/mapper/WrkMastExecuteMapper.java
@@ -6,12 +6,25 @@
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
+import java.util.List;
+
@Mapper
@Repository
public interface WrkMastExecuteMapper extends BaseMapper<WrkMastExecute> {
WrkMastExecute getWrkMastByWrkNo(@Param("wrkNo") Long wrkNo);
- Integer getWrkMastByJarIdCount(@Param("jarId") Integer jarId);
+ List<WrkMastExecute> getWrkMastByJarId(@Param("jarId") Integer jarId);
+
+ List<WrkMastExecute> selectWrkMastExecuteByType(@Param("type") Integer type);
+
+ List<WrkMastExecute> selectWrkMastExecuteByTypeAndIoTyperAndWrkType(@Param("type")Integer type,@Param("ioType")Integer ioType,@Param("wrkType")Integer wrkType);
+
+ List<WrkMastExecute> selectWrkMastExecuteByWrk(@Param("type")Integer type,@Param("ioType")Integer ioType,
+ @Param("wrkType")Integer wrkType,@Param("steNo")Integer steNo,
+ @Param("jarNo")Integer jarNo,@Param("rgvNo")Integer rgvNo);
+
+
+ Integer getWrkMastExecuteByJarIdCount(@Param("jarId") Integer jarId);
}
--
Gitblit v1.9.1