mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-17 16:36:03 +08:00
feat(支持springboot3): 支持springboot3框架
This commit is contained in:
@@ -22,6 +22,7 @@
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>httpclient</artifactId>
|
||||
<version>4.5.13</version>
|
||||
</dependency>
|
||||
|
||||
<!-- ttl -->
|
||||
|
||||
@@ -2,7 +2,7 @@ package com.fastbee.sip.model;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import java.text.Collator;
|
||||
import java.util.Comparator;
|
||||
@Data
|
||||
|
||||
@@ -19,7 +19,7 @@ import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import jakarta.annotation.Resource;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
@@ -155,6 +155,7 @@ public class VideoMqttService implements IMqttService {
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void publishChannelsProperty(String DeviceSipId, List<SipDeviceChannel> channels) {
|
||||
SipConfig sipConfig = sipConfigService.selectSipConfigBydeviceSipId(DeviceSipId);
|
||||
if (null != sipConfig) {
|
||||
@@ -180,6 +181,7 @@ public class VideoMqttService implements IMqttService {
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void publishProperty(Long productId, String deviceNum, List<ThingsModelSimpleItem> thingsList, int delay) {
|
||||
String pre = "";
|
||||
if (delay > 0) {
|
||||
|
||||
Reference in New Issue
Block a user