From 09b03465d8a0ca3fd85fda020e7f160c1b3302af Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=96=AF=E7=8B=82=E7=9A=84=E7=8B=AE=E5=AD=90Li?=
<15040126243@163.com>
Date: Sun, 2 Jan 2022 13:14:16 +0800
Subject: [PATCH] update mybatis-plus 3.4.3.4 => 3.5.0
---
pom.xml | 2 +-
.../src/main/java/com/ruoyi/demo/mapper/TestDemoMapper.java | 3 +--
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/pom.xml b/pom.xml
index 91fd51af2..7ee55e281 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
2.2.11
3.3.0
2.3
- 3.4.3.4
+ 3.5.0
3.9.1
5.7.18
4.9.2
diff --git a/ruoyi-demo/src/main/java/com/ruoyi/demo/mapper/TestDemoMapper.java b/ruoyi-demo/src/main/java/com/ruoyi/demo/mapper/TestDemoMapper.java
index 7a3cb62d6..243b6dc46 100644
--- a/ruoyi-demo/src/main/java/com/ruoyi/demo/mapper/TestDemoMapper.java
+++ b/ruoyi-demo/src/main/java/com/ruoyi/demo/mapper/TestDemoMapper.java
@@ -11,7 +11,6 @@ import com.ruoyi.demo.domain.TestDemo;
import com.ruoyi.demo.domain.vo.TestDemoVo;
import org.apache.ibatis.annotations.Param;
-import java.io.Serializable;
import java.util.Collection;
import java.util.List;
@@ -55,5 +54,5 @@ public interface TestDemoMapper extends BaseMapperPlus {
@DataColumn(key = "deptName", value = "dept_id"),
@DataColumn(key = "userName", value = "user_id")
})
- int deleteBatchIds(@Param(Constants.COLLECTION) Collection extends Serializable> idList);
+ int deleteBatchIds(@Param(Constants.COLLECTION) Collection> idList);
}