package com.yuanchu.mom.mapper;
|
|
import com.yuanchu.mom.pojo.ManufactureScheduling;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* <p>
|
* 排产表 Mapper 接口
|
* </p>
|
*
|
* @author 江苏鵷雏网络科技有限公司
|
* @since 2023-08-31 11:54:28
|
*/
|
public interface ManufactureSchedulingMapper extends BaseMapper<ManufactureScheduling> {
|
|
List<Map<String, Object>> selectScheduling(Integer manOrdId);
|
|
List<Map<String, Object>> selectProduceTable(Integer manOrdId, String productName, String startTime, String endTime);
|
|
Map<String, Object> sePros(Integer schedulingId);
|
|
List<Map<String, Object>> reportSelectScheduling();
|
}
|