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> SelectOkSchedulingMp(String selectTime1, String selectTime2,String orderId,String processes, ProductionScheduling productionScheduling); List> SelectNoSchedulingMp(String selectTime1, String selectTime2,String orderId,String processes, ProductionScheduling productionScheduling); List> selectLastSchedulingMp(String selectTime1, String selectTime2, ProductionScheduling productionScheduling); List> SelectSchedulingNotMp(String selectTime1, String selectTime2, String orderId, String processes, ProductionScheduling productionScheduling); }