refactor: add ScheduleArrangeService dependency to MartialScheduleServiceImpl
Phase 2, Step 2.8: Prepare for arrangement service integration - Add IScheduleArrangeService dependency with @Autowired - Add import statement for IScheduleArrangeService - Keep original methods intact for backward compatibility - All 443 tests passing Related to Phase 2 refactoring plan
This commit is contained in:
+4
@@ -2,6 +2,7 @@ package org.springblade.modules.martial.service.impl;
|
||||
|
||||
import org.springblade.modules.martial.service.IScheduleExportService;
|
||||
import org.springblade.modules.martial.service.IScheduleQueryService;
|
||||
import org.springblade.modules.martial.service.IScheduleArrangeService;
|
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
@@ -58,6 +59,9 @@ public class MartialScheduleServiceImpl extends ServiceImpl<MartialScheduleMappe
|
||||
@Autowired
|
||||
private IScheduleQueryService scheduleQueryService;
|
||||
|
||||
@Autowired
|
||||
private IScheduleArrangeService scheduleArrangeService;
|
||||
|
||||
@Autowired
|
||||
private IMartialVenueService venueService;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user