package com.example.erp.mapper.sd; import com.baomidou.dynamic.datasource.annotation.DS; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.example.erp.entity.pp.ReportingWorkDetail; import com.example.erp.entity.sd.OrderProcessDetail; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.sql.Date; import java.util.List; import java.util.Map; @Mapper @DS("sd") public interface OrderProcessDetailMapper extends BaseMapper { boolean insertOrderProcessDetail(@Param("processDetailList") List processDetailList); void updateQuantity(String reportingWorkId,String process,String type); List> filterOrderProcess(String orderId); List> getGlassLRow(String orderId); List> getProcessGlassLRow(String orderId); List> filterLastProcess(String orderId, String orderNumber, String technologyNumber,String id); void insertByReportingWorkDetail(ReportingWorkDetail reportingWorkDetail, String processId, String thisProcess); List> filterOrderProcessCollect(Date selectTime1, Date selectTime2, String orderId); List> getGlassLRowCollect(Date selectTime1, Date selectTime2, String orderId); String selectNextProcess(String processId, String technologyNumber, String thisProcess, String orderNumber); List> selectShiftQuantitySv(String creatorId, String startDatetime, String endDatetime, String step); String getBehindProcess(String processId, String orderNumber, String technologyNumber, String thisProcess,String orderId); }