XiaoRuby
2023-09-04 91b2da2c3a42656e842f7c9e0c4af6aa02dbaa3a
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.yuanchu.mom.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.yuanchu.mom.pojo.ManufactureScheduling;
import com.yuanchu.mom.mapper.ManufactureSchedulingMapper;
import com.yuanchu.mom.service.ManufactureSchedulingService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 排产表 服务实现类
 * </p>
 *
 * @author 江苏鵷雏网络科技有限公司
 * @since 2023-08-31 11:54:28
 */
@Service
public class ManufactureSchedulingServiceImpl extends ServiceImpl<ManufactureSchedulingMapper, ManufactureScheduling> implements ManufactureSchedulingService {
 
    @Resource
    private ManufactureSchedulingMapper manufactureSchedulingMapper;
 
    @Override
    public List<Map<String, Object>> selectScheduling(Integer manOrdId) {
        return manufactureSchedulingMapper.selectScheduling(manOrdId);
    }
 
    @Override
    public List<Map<String, Object>> selectProduceTable(Integer manOrdId, String productName, String startTime, String endTime) {
        return manufactureSchedulingMapper.selectProduceTable(manOrdId, productName, startTime, endTime);
    }
 
    @Override
    public Map<String, Object> sePros(Integer schedulingId) {
        return manufactureSchedulingMapper.sePros(schedulingId);
    }
 
    @Override
    public List<Map<String, Object>> reportSelectScheduling() {
        return manufactureSchedulingMapper.reportSelectScheduling();
    }
}