From f59452ac384766a21500857e89928a8abc0e75b5 Mon Sep 17 00:00:00 2001 From: Lius <Lius2225@163.com> Date: 星期四, 22 八月 2024 13:29:27 +0800 Subject: [PATCH] update --- lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/service/impl/MdcQualityMonthServiceImpl.java | 8 +++----- 1 files changed, 3 insertions(+), 5 deletions(-) diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/service/impl/MdcQualityMonthServiceImpl.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/service/impl/MdcQualityMonthServiceImpl.java index 33dcb22..4589b49 100644 --- a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/service/impl/MdcQualityMonthServiceImpl.java +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/service/impl/MdcQualityMonthServiceImpl.java @@ -2,12 +2,10 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.jeecg.modules.mdc.util.DateUtils; -import org.jeecg.modules.mdcJc.entity.ClassMonthlyschedule; -import org.jeecg.modules.mdcJc.entity.MdcClassMonthlyschedule; import org.jeecg.modules.mdcJc.entity.MdcQualityMonth; import org.jeecg.modules.mdcJc.entity.QualityMonth; import org.jeecg.modules.mdcJc.mapper.MdcQualityMonthMapper; -import org.jeecg.modules.mdcJc.service.IClassMonthlyscheduleService; +import org.jeecg.modules.mdcJc.service.IClassMonthlyScheduleService; import org.jeecg.modules.mdcJc.service.IMdcQualityMonthService; import org.jeecg.modules.utils.BeanMapper; import org.springframework.beans.factory.annotation.Autowired; @@ -24,12 +22,12 @@ public class MdcQualityMonthServiceImpl extends ServiceImpl<MdcQualityMonthMapper,MdcQualityMonth> implements IMdcQualityMonthService { @Autowired - private IClassMonthlyscheduleService classMonthlyscheduleService; + private IClassMonthlyScheduleService classMonthlyScheduleService; @Override public boolean saveQualityMonth() { String date = DateUtils.format(DateUtils.getNow(),DateUtils.STR_YEAR_MONTH); - List<QualityMonth> list = classMonthlyscheduleService.findListQualityMonth(date); + List<QualityMonth> list = classMonthlyScheduleService.findListQualityMonth(date); if (list == null || list.isEmpty()) { return true; } -- Gitblit v1.9.3