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.ClassMonthlyschedule; import org.jeecg.modules.mdcJc.entity.ProductMonthlyschedule; import org.jeecg.modules.mdcJc.entity.QualityMonth; 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 implements IClassMonthlyscheduleService { @Override public List findListClass(String dateTime) { return super.baseMapper.findListClass(dateTime); } @Override public List findListProductMonth(String dateTime) { return super.baseMapper.findListProductMonth(dateTime); } @Override public List findListQualityMonth(String dateTime) { return super.baseMapper.findListQualityMonth(dateTime); } }