package com.yuanchu.mom.service; import com.yuanchu.mom.pojo.ManufactureOrder; import com.yuanchu.mom.pojo.ManufactureScheduling; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; import java.util.Map; /** *

* 排产表 服务类 *

* * @author 江苏鵷雏网络科技有限公司 * @since 2023-08-31 11:54:28 */ public interface ManufactureSchedulingService extends IService { List> selectScheduling(Integer manOrdId); List> selectProduceTable(Integer manOrdId, String productName, String startTime, String endTime); Map sePros(Integer schedulingId); List> reportSelectScheduling(); }