对接打印机

This commit is contained in:
mi9688
2024-12-10 17:51:32 +08:00
parent 81e5429ee9
commit 5e76aa6305
12 changed files with 346 additions and 50 deletions

View File

@ -238,9 +238,19 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<!--二维码生成-->
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>3.4.1</version>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>javase</artifactId>
<version>3.4.1</version>
</dependency>
</dependencies>
</project>

View File

@ -66,6 +66,10 @@ public interface FastBeeConstant {
* 设备其他消息处理
*/
String DEVICE_OTHER_TASK = "deviceOtherMsgTask";
/**
* 水电设备数据上报处理
*/
String DEVICE_WATER_ELECTRIC_TASK = "deviceWaterElectricMsgTask";
/**
* 数据调试任务
*/