From c8673cbde4538b109e43042dc93cf33c46dca37e Mon Sep 17 00:00:00 2001 From: Lius <Lius2225@163.com> Date: 星期二, 31 十二月 2024 10:56:57 +0800 Subject: [PATCH] 每日排产计划修改 --- 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