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/RewardPunishmentStandardService.java |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/service/RewardPunishmentStandardService.java b/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/service/RewardPunishmentStandardService.java
index 3d75711..6229b77 100644
--- a/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/service/RewardPunishmentStandardService.java
+++ b/goal-manage/goal-manage-service/src/main/java/com/gkhy/safePlatform/targetDuty/service/RewardPunishmentStandardService.java
@@ -5,7 +5,9 @@
 import com.gkhy.safePlatform.commons.vo.ResultVO;
 import com.gkhy.safePlatform.commons.query.PageQuery;
 import com.gkhy.safePlatform.targetDuty.model.dto.req.RewardPunishmentStandardQueryCriteria;
+import org.springframework.web.multipart.MultipartFile;
 
+import java.io.IOException;
 import java.util.List;
 
 
@@ -15,9 +17,16 @@
  * @author xurui
  * @since 2022-07-21 10:20:10
  */
-public interface RewardPunishmentStandardService extends IService<RewardPunishmentStandard> {
+public interface RewardPunishmentStandardService {
     ResultVO queryAll(PageQuery<RewardPunishmentStandardQueryCriteria> pageQuery);
     
     List<RewardPunishmentStandard> queryAll(RewardPunishmentStandardQueryCriteria criteria);
 
+    void importData(MultipartFile file) throws IOException;
+
+    void delete(Long[] ids);
+
+    void exportTemplate() throws IOException;
+
+    void exportData(RewardPunishmentStandardQueryCriteria queryCriteria) throws IOException;
 }
\ No newline at end of file

--
Gitblit v1.9.2