添加查询充电枪状态接口

This commit is contained in:
三丙
2025-09-27 18:04:00 +08:00
parent 7a03cc98a7
commit a1e0a09320
74 changed files with 1727 additions and 259 deletions

41
pom.xml
View File

@@ -7,13 +7,14 @@
付费课程知识星球https://t.zsxq.com/aKtXo
-->
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.5.5</version>
<version>3.5.6</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>sanbing</groupId>
@@ -49,7 +50,7 @@
<mybatis-plus-boot-starter.version>3.5.7</mybatis-plus-boot-starter.version>
<curator-recipes.version>5.9.0</curator-recipes.version>
<oshi-core.version>6.6.2</oshi-core.version>
<zookeeper.version>3.9.3</zookeeper.version>
<zookeeper.version>3.9.4</zookeeper.version>
<xnio-api.version>3.8.16.Final</xnio-api.version>
<javax.annotation-api.version>1.3.2</javax.annotation-api.version>
<commons-lang3.version>3.18.0</commons-lang3.version>
@@ -581,41 +582,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>custom-clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>
<filesets>
<fileset>
<directory>${project.build.directory}</directory>
<includes>
<include>**/*</include>
</includes>
</fileset>
<!-- 只清理日志目录 -->
<fileset>
<directory>${main.dir}</directory>
<includes>
<include>**/logs/**</include>
<include>**/logs/</include>
</includes>
<excludes>
<exclude>.git/**</exclude>
</excludes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
@@ -665,6 +631,7 @@
<exclude>**/favicon.ico</exclude>
<exclude>**/CHANGELOG.md</exclude>
<exclude>**/README.md</exclude>
<exclude>**/robots.txt</exclude>
</excludes>
<mapping>
<proto>JAVADOC_STYLE</proto>