From bfb4c1e1d4e3f99f74a51ef5b67531f9d91d0dde Mon Sep 17 00:00:00 2001 From: songhuangfeng123 <shf18767906695@163.com> Date: 星期四, 08 九月 2022 09:13:38 +0800 Subject: [PATCH] 目标fix --- goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/service/TargetDutySummaryService.java | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/service/TargetDutySummaryService.java b/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/service/TargetDutySummaryService.java index 16dd559..f947d8b 100644 --- a/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/service/TargetDutySummaryService.java +++ b/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/service/TargetDutySummaryService.java @@ -6,6 +6,7 @@ import com.gkhy.safePlatform.commons.query.PageQuery; import com.gkhy.safePlatform.targetDuty.model.dto.req.TargetDutySummaryQueryCriteria; +import java.io.IOException; import java.util.List; @@ -15,9 +16,12 @@ * @author xurui * @since 2022-07-21 15:35:14 */ -public interface TargetDutySummaryService extends IService<TargetDutySummary> { +public interface TargetDutySummaryService { ResultVO queryAll(PageQuery<TargetDutySummaryQueryCriteria> pageQuery); List<TargetDutySummary> queryAll(TargetDutySummaryQueryCriteria criteria); + void delete(Long[] ids); + + void exportData(TargetDutySummaryQueryCriteria queryCriteria) throws IOException; } \ No newline at end of file -- Gitblit v1.9.2