| | |
| | | package org.springblade.modules.task.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.task.dto.TaskCampusReportingEventDTO; |
| | | import org.springblade.modules.task.entity.TaskCampusReportingEventEntity; |
| | | import org.springblade.modules.task.vo.TaskCampusReportingEventVO; |
| | |
| | | * @author BladeX |
| | | * @since 2023-11-06 |
| | | */ |
| | | public interface ITaskCampusReportingEventService extends BaseService<TaskCampusReportingEventEntity> { |
| | | public interface ITaskCampusReportingEventService extends IService<TaskCampusReportingEventEntity> { |
| | | |
| | | /** |
| | | * 自定义分页 |