From 1ffc844e3483cd3ac7cc73b5fb17c62e09d1ff2f Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期五, 30 八月 2024 10:54:34 +0800 Subject: [PATCH] 工单取图像查询工单范围调整、分页图片查询 --- pom.xml | 47 ++++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 42 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 31104c8..82b6100 100644 --- a/pom.xml +++ b/pom.xml @@ -31,11 +31,11 @@ <fastjson.version>2.0.43</fastjson.version> <commons.lang.version>2.6</commons.lang.version> <druid.version>1.2.20</druid.version> - <pagehelper.version>1.3.0</pagehelper.version> + <pagehelper.boot.version>1.4.6</pagehelper.boot.version> <aliyun.sdk.oss.version>3.10.2</aliyun.sdk.oss.version> <knife4j.version>3.0.2</knife4j.version> <aspectj.version>1.9.4</aspectj.version> - <mybatis-plus.version>3.5.4</mybatis-plus.version> + <mybatis-plus.version>3.5.4.1</mybatis-plus.version> <jwt.version>0.9.1</jwt.version> <jaxb-api.version>2.3.1</jaxb-api.version> <poi.version>4.1.2</poi.version> @@ -126,6 +126,24 @@ </dependencyManagement> <dependencies> + <dependency> + <groupId>org.bytedeco</groupId> + <artifactId>javacv-platform</artifactId> + <version>1.5.1</version> + <type>pom</type> + </dependency> + <!-- sip鍗忚鏍� --> + <dependency> + <groupId>javax.sip</groupId> + <artifactId>jain-sip-ri</artifactId> + <version>1.3.0-91</version> + </dependency> + <!-- 娴峰悍client --> + <dependency> + <groupId>com.hikvision.ga</groupId> + <artifactId>artemis-http-client</artifactId> + <version>1.1.3</version> + </dependency> <!-- jpa --> <dependency> <groupId>org.springframework.boot</groupId> @@ -171,14 +189,19 @@ <version>${druid.version}</version> </dependency> + <!-- pagehelper 鍒嗛〉鎻掍欢 --> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> - <version>${pagehelper.version}</version> + <version>${pagehelper.boot.version}</version> <exclusions> <exclusion> - <artifactId>jsqlparser</artifactId> - <groupId>com.github.jsqlparser</groupId> + <groupId>org.mybatis</groupId> + <artifactId>mybatis</artifactId> + </exclusion> + <exclusion> + <groupId>org.mybatis</groupId> + <artifactId>mybatis-spring</artifactId> </exclusion> </exclusions> </dependency> @@ -241,6 +264,20 @@ <artifactId>jaxb-api</artifactId> <version>${jaxb-api.version}</version> </dependency> + + <dependency> + <groupId>com.alibaba</groupId> + <artifactId>easyexcel</artifactId> + <version>${easyexcel.version}</version> + </dependency> + + <dependency> + <groupId>org.springframework.cloud</groupId> + <artifactId>spring-cloud-starter-openfeign</artifactId> + <version>4.0.4</version> + </dependency> + + </dependencies> <build> -- Gitblit v1.8.0