From ede4e6aef5421f3a28fb4bc083ee60025b1b5f03 Mon Sep 17 00:00:00 2001 From: chenlu <1320612696@qq.com> Date: 星期五, 01 三月 2024 08:56:39 +0800 Subject: [PATCH] 报工新增界面部分代码 --- north-glass-erp/src/main/java/com/example/erp/mapper/pp/ProductionSchedulingMapper.java | 5 +++++ 1 files changed, 5 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 index 61a2dea..f5e0531 100644 --- 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 @@ -4,6 +4,7 @@ import org.apache.ibatis.annotations.Mapper; import java.sql.Date; +import java.time.LocalDate; import java.util.List; import java.util.Map; @@ -18,4 +19,8 @@ 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); + + Integer selectMaxId(); + + Boolean insertSelective(String schedulingId, String orderId, String orderNumber, String processes, Integer schedulingQuantity, LocalDate scheduledStartTime, LocalDate planEndTime, String notes); } -- Gitblit v1.8.0