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/MdcProductMonthScheduleServiceImp.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/service/impl/MdcProductMonthScheduleServiceImp.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/service/impl/MdcProductMonthScheduleServiceImp.java index 3f49351..684a461 100644 --- a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/service/impl/MdcProductMonthScheduleServiceImp.java +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdcJc/service/impl/MdcProductMonthScheduleServiceImp.java @@ -5,7 +5,7 @@ import org.jeecg.modules.mdcJc.entity.MdcProductMonthlyschedule; import org.jeecg.modules.mdcJc.entity.ProductMonthlyschedule; import org.jeecg.modules.mdcJc.mapper.MdcProductMonthScheduleMapper; -import org.jeecg.modules.mdcJc.service.IClassMonthlyscheduleService; +import org.jeecg.modules.mdcJc.service.IClassMonthlyScheduleService; import org.jeecg.modules.mdcJc.service.IMdcProductMonthScheduleService; import org.jeecg.modules.utils.BeanMapper; import org.springframework.beans.factory.annotation.Autowired; @@ -22,12 +22,12 @@ public class MdcProductMonthScheduleServiceImp extends ServiceImpl<MdcProductMonthScheduleMapper,MdcProductMonthlyschedule> implements IMdcProductMonthScheduleService { @Autowired - private IClassMonthlyscheduleService classMonthlyscheduleService; + private IClassMonthlyScheduleService classMonthlyScheduleService; @Override public boolean scheduleProductMonthList() { String date = DateUtils.format(DateUtils.getNow(),DateUtils.STR_YEAR_MONTH); - List<ProductMonthlyschedule> list = classMonthlyscheduleService.findListProductMonth(date); + List<ProductMonthlyschedule> list = classMonthlyScheduleService.findListProductMonth(date); if (list == null || list.isEmpty()) { return true; } -- Gitblit v1.9.3