From 3b0516a2959e25576e4f3fda697a3b025d06c8c9 Mon Sep 17 00:00:00 2001 From: zxl <763096477@qq.com> Date: 星期二, 24 六月 2025 14:09:07 +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