| | |
| | | import org.springblade.modules.task.service.ITaskCampusReportingEventService; |
| | | import org.springblade.modules.task.service.ITaskService; |
| | | import org.springblade.modules.task.vo.TaskCampusReportingEventVO; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.context.annotation.Lazy; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import javax.annotation.Resource; |
| | |
| | | @Service |
| | | public class TaskCampusReportingEventServiceImpl extends ServiceImpl<TaskCampusReportingEventMapper, TaskCampusReportingEventEntity> implements ITaskCampusReportingEventService { |
| | | |
| | | @Resource |
| | | @Autowired |
| | | @Lazy |
| | | private ITaskService taskService; |
| | | |
| | | @Override |
| | | public IPage<TaskCampusReportingEventVO> selectTaskCampusReportingEventPage(IPage<TaskCampusReportingEventVO> page, TaskCampusReportingEventVO taskCampusReportingEvent) { |
| | | return page.setRecords(baseMapper.selectTaskCampusReportingEventPage(page, taskCampusReportingEvent)); |