From f30358a20ae9a74ee7f6c604a8d102c1b9b24659 Mon Sep 17 00:00:00 2001
From: lsh <lsh123456>
Date: 星期二, 25 六月 2024 16:24:26 +0800
Subject: [PATCH] #
---
src/main/java/com/zy/asrs/mapper/WrkMastExecuteMapper.java | 9 +++++++++
1 files changed, 9 insertions(+), 0 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..ba97d72 100644
--- a/src/main/java/com/zy/asrs/mapper/WrkMastExecuteMapper.java
+++ b/src/main/java/com/zy/asrs/mapper/WrkMastExecuteMapper.java
@@ -6,12 +6,21 @@
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);
+ List<WrkMastExecute> getWrkMastByJarId(@Param("jarId") Integer jarId);
+
+ List<WrkMastExecute> sselectWrkMastExecuteByType(@Param("type") Integer type);
+
+ List<WrkMastExecute> sselectWrkMastExecuteByTypeAndIoTyper(@Param("type")Integer type,@Param("ioType")Integer ioType);
+
+
Integer getWrkMastByJarIdCount(@Param("jarId") Integer jarId);
}
--
Gitblit v1.9.1