在正确基点上继续开发

Change-Id: Id4ef3e3bd2627176ea8254561140a7bf570f9cdb
diff --git a/pom.xml b/pom.xml
index 8e12b26..a1921d6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -51,6 +51,11 @@
             <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
             <version>3.5.10.1</version>
         </dependency>
+        <dependency>
+            <groupId>com.baomidou</groupId>
+            <artifactId>mybatis-plus-jsqlparser</artifactId>
+            <version>3.5.10.1</version> <!-- 确保版本和 MyBatis Plus 主包一致 -->
+        </dependency>
         <!-- 数据库-->
         <!-- Mysql依赖包 -->
         <dependency>
@@ -107,6 +112,19 @@
             <scope>test</scope>
         </dependency>
 
+        <dependency>
+            <groupId>org.projectlombok</groupId>
+            <artifactId>lombok</artifactId>
+            <version>1.18.32</version>  <!-- 请根据需要选择最新版本 -->
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>com.jayway.jsonpath</groupId>
+            <artifactId>json-path</artifactId>
+            <version>2.9.0</version>
+        </dependency>
+
     </dependencies>
 
     <build>