From ef5a518c3e2c1fe41aa60f56ca31ddafa0cb1561 Mon Sep 17 00:00:00 2001 From: guoyuji <guoyujie@ng.com> Date: 星期四, 23 五月 2024 08:32:36 +0800 Subject: [PATCH] 添加产品汇总报表 --- north-glass-erp/src/main/java/com/example/erp/mapper/pp/ProductionSchedulingMapper.java | 37 +++++++++++++++++++++++++++++++++++++ 1 files changed, 37 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..ed797a9 --- /dev/null +++ b/north-glass-erp/src/main/java/com/example/erp/mapper/pp/ProductionSchedulingMapper.java @@ -0,0 +1,37 @@ +package com.example.erp.mapper.pp; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.example.erp.entity.pp.BasicDataProduce; +import com.example.erp.entity.pp.ProductionScheduling; +import com.example.erp.entity.sd.BasicData; +import org.apache.ibatis.annotations.Mapper; + +import java.sql.Date; +import java.time.LocalDate; +import java.util.List; +import java.util.Map; + +@Mapper +public interface ProductionSchedulingMapper extends BaseMapper<ProductionScheduling> { + + + 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,String processes,String orderId, 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 technologyNumber, String processes, Integer schedulingQuantity, LocalDate scheduledStartTime, LocalDate planEndTime, String notes); + + Boolean examineSchedulingMp(String schedulingId, String userName); + + Boolean deleteSchedulingMp(String schedulingId); + + List<Map<String,String>> selectProcess(); + +// Integer selectNumberMp(String orderId, String orderNumber, String processes); +} -- Gitblit v1.8.0