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; /** *

* 排产表 服务实现类 *

* * @author 江苏鵷雏网络科技有限公司 * @since 2023-08-31 11:54:28 */ @Service public class ManufactureSchedulingServiceImpl extends ServiceImpl implements ManufactureSchedulingService { @Resource private ManufactureSchedulingMapper manufactureSchedulingMapper; @Override public List> selectScheduling(Integer manOrdId) { return manufactureSchedulingMapper.selectScheduling(manOrdId); } @Override public List> selectProduceTable(Integer manOrdId, String productName, String startTime, String endTime) { return manufactureSchedulingMapper.selectProduceTable(manOrdId, productName, startTime, endTime); } @Override public Map sePros(Integer schedulingId) { return manufactureSchedulingMapper.sePros(schedulingId); } }