linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
src/main/java/org/springblade/modules/task/service/ITaskCampusReportingEventService.java
@@ -16,10 +16,11 @@
 */
package org.springblade.modules.task.service;
import com.baomidou.mybatisplus.core.metadata.IPage;
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;
import org.springblade.core.mp.base.BaseService;
import com.baomidou.mybatisplus.core.metadata.IPage;
/**
 * 校园安全检查任务表 服务类
@@ -27,7 +28,7 @@
 * @author BladeX
 * @since 2023-11-06
 */
public interface ITaskCampusReportingEventService extends BaseService<TaskCampusReportingEventEntity> {
public interface ITaskCampusReportingEventService extends IService<TaskCampusReportingEventEntity> {
   /**
    * 自定义分页
@@ -39,4 +40,7 @@
   IPage<TaskCampusReportingEventVO> selectTaskCampusReportingEventPage(IPage<TaskCampusReportingEventVO> page, TaskCampusReportingEventVO taskCampusReportingEvent);
   Boolean saveCampusReporting(TaskCampusReportingEventDTO taskCampusReportingEvent);
   Boolean updateCampusReporting(TaskCampusReportingEventDTO taskCampusReportingEvent);
}