XiaoRuby
2023-09-04 f1400115f582ae795913e360c0f5a70ea4513544
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
 
/**
 * <p>
 * 排产表 服务类
 * </p>
 *
 * @author 江苏鵷雏网络科技有限公司
 * @since 2023-08-31 11:54:28
 */
public interface ManufactureSchedulingService extends IService<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();
}