zhongrj
2024-01-11 af21084fa4d1e5f8432f61fbd26a3e4e99495616
src/main/java/org/springblade/modules/task/service/ITaskLabelReportingEventService.java
@@ -17,6 +17,7 @@
package org.springblade.modules.task.service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.core.mp.base.BaseService;
import org.springblade.modules.task.dto.TaskLabelReportingEventDTO;
import org.springblade.modules.task.entity.TaskLabelReportingEventEntity;
@@ -28,7 +29,7 @@
 * @author BladeX
 * @since 2023-11-06
 */
public interface ITaskLabelReportingEventService extends BaseService<TaskLabelReportingEventEntity> {
public interface ITaskLabelReportingEventService extends IService<TaskLabelReportingEventEntity> {
   /**
    * 自定义分页
@@ -42,5 +43,5 @@
   Boolean saveReportingEven(TaskLabelReportingEventDTO taskLabelReportingEvent);
   Boolean updateLabelReporting(TaskLabelReportingEventEntity taskLabelReportingEvent) throws Exception;
   Boolean updateLabelReporting(TaskLabelReportingEventVO taskLabelReportingEvent) throws Exception;
}