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:
2026-01-18 00:53:41 +08:00
parent 147d48c8a6
commit 02be78ffbb
9 changed files with 4 additions and 0 deletions
@@ -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;