From 5e3a8bcac219d13667853eab7f293b85f5b6f2db Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期四, 29 二月 2024 10:50:10 +0800
Subject: [PATCH] 右键菜单以及拖选

---
 north-glass-erp/src/main/java/com/example/erp/mapper/pp/ProductionSchedulingMapper.java |   21 +++++++++++++++++++++
 1 files changed, 21 insertions(+), 0 deletions(-)

diff --git a/north-glass-erp/src/main/java/com/example/erp/mapper/pp/ProductionSchedulingMapper.java b/north-glass-erp/src/main/java/com/example/erp/mapper/pp/ProductionSchedulingMapper.java
new file mode 100644
index 0000000..61a2dea
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/mapper/pp/ProductionSchedulingMapper.java
@@ -0,0 +1,21 @@
+package com.example.erp.mapper.pp;
+
+import com.example.erp.entity.pp.ProductionScheduling;
+import org.apache.ibatis.annotations.Mapper;
+
+import java.sql.Date;
+import java.util.List;
+import java.util.Map;
+
+@Mapper
+public interface ProductionSchedulingMapper {
+
+
+    List<Map<String,String>> SelectOkSchedulingMp(String selectTime1, String selectTime2,String orderId,String processes, ProductionScheduling productionScheduling);
+
+    List<Map<String,String>> SelectNoSchedulingMp(String selectTime1, String selectTime2,String orderId,String processes, ProductionScheduling  productionScheduling);
+
+    List<Map<String,String>> selectLastSchedulingMp(String selectTime1, String selectTime2, ProductionScheduling productionScheduling);
+
+    List<Map<String,String>> SelectSchedulingNotMp(String selectTime1, String selectTime2, String orderId, String processes, ProductionScheduling productionScheduling);
+}

--
Gitblit v1.8.0