lin
2024-03-25 9f8f9d13c42ca8cdccbf351069082a5fdccef2e4
src/main/java/org/springblade/modules/task/service/ITaskCampusReportingEventService.java
@@ -17,7 +17,7 @@
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;
@@ -28,7 +28,7 @@
 * @author BladeX
 * @since 2023-11-06
 */
public interface ITaskCampusReportingEventService extends BaseService<TaskCampusReportingEventEntity> {
public interface ITaskCampusReportingEventService extends IService<TaskCampusReportingEventEntity> {
   /**
    * 自定义分页
@@ -42,5 +42,5 @@
   Boolean saveCampusReporting(TaskCampusReportingEventDTO taskCampusReportingEvent);
   Boolean updateCampusReporting(TaskCampusReportingEventDTO taskCampusReportingEvent);
   Boolean updateCampusReporting(TaskCampusReportingEventDTO taskCampusReportingEvent) throws Exception;
}