From 6d08eec100243e0be59a207d57ab4db7974e51e4 Mon Sep 17 00:00:00 2001 From: yangbin <yangbin@qq.com> Date: 星期一, 29 七月 2024 15:26:26 +0800 Subject: [PATCH] Merge branch 'master' of http://117.34.109.166:18448/r/mdc_yituo --- lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/service/impl/ClassMonthlyscheduleServiceImpl.java | 39 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 39 insertions(+), 0 deletions(-) diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/service/impl/ClassMonthlyscheduleServiceImpl.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/service/impl/ClassMonthlyscheduleServiceImpl.java new file mode 100644 index 0000000..8e76cb2 --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/service/impl/ClassMonthlyscheduleServiceImpl.java @@ -0,0 +1,39 @@ +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<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); + } + + +} -- Gitblit v1.9.3