对比新文件 |
| | |
| | | package org.jeecg.modules.mdcJc.service.impl; |
| | | |
| | | import com.baomidou.dynamic.datasource.annotation.DS; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import org.jeecg.modules.mdcJc.entity.*; |
| | | import org.jeecg.modules.mdcJc.mapper.ClassMonthlyscheduleMapper; |
| | | import org.jeecg.modules.mdcJc.service.IClassMonthlyScheduleService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author clown |
| | | * * @date 2024/7/15 |
| | | */ |
| | | |
| | | @Service |
| | | @DS("mesSoAdb") |
| | | public class ClassMonthlyScheduleServiceImpl extends ServiceImpl<ClassMonthlyscheduleMapper,ClassMonthlyschedule> implements IClassMonthlyScheduleService { |
| | | |
| | | @Override |
| | | public List<ClassMonthlyschedule> findListClass(String dateTime) { |
| | | return super.baseMapper.findListClass(dateTime); |
| | | } |
| | | |
| | | @Override |
| | | public List<ProductMonthlyschedule> findListProductMonth(String dateTime) { |
| | | return super.baseMapper.findListProductMonth(dateTime); |
| | | } |
| | | |
| | | @Override |
| | | public List<QualityMonth> findListQualityMonth(String dateTime) { |
| | | return super.baseMapper.findListQualityMonth(dateTime); |
| | | } |
| | | |
| | | @Override |
| | | public List<ProductDayschedule> findListProductDay(String dateTime) { |
| | | return super.baseMapper.findListProductDay(dateTime); |
| | | } |
| | | |
| | | @Override |
| | | public List<OnLineQueue> onLineQueueList() { |
| | | return super.baseMapper.onLineQueueList(); |
| | | } |
| | | |
| | | @Override |
| | | public List<OnLineQueue> findListOnLineQueue(Integer id) { |
| | | return super.baseMapper.findListOnLineQueue(id); |
| | | } |
| | | |
| | | @Override |
| | | public List<UnderLineQueue> underLineQueueList() { |
| | | return super.baseMapper.underLineQueueList(); |
| | | } |
| | | |
| | | @Override |
| | | public List<UnderLineQueue> findListUnderLineQueue(Integer id) { |
| | | return super.baseMapper.findListUnderLineQueue(id); |
| | | } |
| | | |
| | | @Override |
| | | public MdcProductDayschedule findYesterdayData(String date) { |
| | | return this.baseMapper.findYesterdayData(date); |
| | | } |
| | | |
| | | |
| | | } |