```
feat(app): 添加获取app版本接口及视频处理控制器
新增功能:
- 在AppAuthController中添加了获取app版本信息的接口`/version`。- 新增AppVideoController用于处理视频上传和帧提取。
修改内容:
- 在AppAuthController中引入了ISysDictTypeService服务。
- 在DeviceBizService中更新了设备通信模式的判断逻辑。
- 修改了DeviceAlarmMapper.xml和DeviceMapper.xml中的SQL查询语句以支持更多通信模式。
- 更新了DeviceXinghanBizService中的人员信息登记逻辑,并添加了获取设备详细信息的方法。
- 在DeviceXinghanController中添加了获取设备详细信息的接口`/info/{id}`。
- 更新了MqttXinghanJson类中的字段命名。
- 在pom.xml中添加了javacv相关的依赖。
修复问题:
- 注释掉了AppSmsAuthStrategy中的登录检查逻辑。
```
这个commit message包含了类型(feat)、作用范围(app)以及简短的描述。同时在body部分详细说明了新增的功能、修改的内容以及修复的问题。
184 lines
6.0 KiB
XML
184 lines
6.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<artifactId>fys-vue-plus</artifactId>
|
|
<groupId>com.fuyuanshen</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<packaging>jar</packaging>
|
|
<artifactId>fys-admin</artifactId>
|
|
|
|
<description>
|
|
web服务入口
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<!-- Mysql驱动包 -->
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
</dependency>
|
|
|
|
<!-- <!– mp支持的数据库均支持 只需要增加对应的jdbc依赖即可 –>-->
|
|
<!-- <!– Oracle –>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.oracle.database.jdbc</groupId>-->
|
|
<!-- <artifactId>ojdbc8</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <!– 兼容oracle低版本 –>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.oracle.database.nls</groupId>-->
|
|
<!-- <artifactId>orai18n</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <!– PostgreSql –>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.postgresql</groupId>-->
|
|
<!-- <artifactId>postgresql</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <!– SqlServer –>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.microsoft.sqlserver</groupId>-->
|
|
<!-- <artifactId>mssql-jdbc</artifactId>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>com.fuyuanshen</groupId>
|
|
<artifactId>fys-common-doc</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fuyuanshen</groupId>
|
|
<artifactId>fys-common-social</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fuyuanshen</groupId>
|
|
<artifactId>fys-common-ratelimiter</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fuyuanshen</groupId>
|
|
<artifactId>fys-common-mail</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 客户管理模块 -->
|
|
<dependency>
|
|
<groupId>com.fuyuanshen</groupId>
|
|
<artifactId>fys-customer</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 设备管理模块 -->
|
|
<dependency>
|
|
<groupId>com.fuyuanshen</groupId>
|
|
<artifactId>fys-equipment</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fuyuanshen</groupId>
|
|
<artifactId>fys-system</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fuyuanshen</groupId>
|
|
<artifactId>fys-job</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 代码生成-->
|
|
<dependency>
|
|
<groupId>com.fuyuanshen</groupId>
|
|
<artifactId>fys-generator</artifactId>
|
|
</dependency>
|
|
|
|
<!-- demo模块 -->
|
|
<!--<dependency>
|
|
<groupId>com.fuyuanshen</groupId>
|
|
<artifactId>fys-demo</artifactId>
|
|
</dependency>-->
|
|
|
|
<!-- 工作流模块 -->
|
|
<dependency>
|
|
<groupId>com.fuyuanshen</groupId>
|
|
<artifactId>fys-workflow</artifactId>
|
|
</dependency>
|
|
|
|
<!-- app模块 -->
|
|
<dependency>
|
|
<groupId>com.fuyuanshen</groupId>
|
|
<artifactId>fys-app</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>de.codecentric</groupId>
|
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.bytedeco</groupId>
|
|
<artifactId>javacv-platform</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bytedeco</groupId>
|
|
<artifactId>javacv</artifactId>
|
|
<version>1.5.7</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- skywalking 整合 logback -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.apache.skywalking</groupId>-->
|
|
<!-- <artifactId>apm-toolkit-logback-1.x</artifactId>-->
|
|
<!-- <version>${与你的agent探针版本保持一致}</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.apache.skywalking</groupId>-->
|
|
<!-- <artifactId>apm-toolkit-trace</artifactId>-->
|
|
<!-- <version>${与你的agent探针版本保持一致}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${spring-boot.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>${maven-jar-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>${maven-war-plugin.version}</version>
|
|
<configuration>
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
<warName>${project.artifactId}</warName>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|