修复码流类型的设置与重置

pull/1669/head
648540858 2024-10-22 22:54:37 +08:00
parent 92ccadf4bf
commit 2be43429fb
4 changed files with 5 additions and 6 deletions

View File

@ -243,8 +243,6 @@ public class DeviceQuery {
}
@Operation(summary = "修改通道的码流类型", security = @SecurityRequirement(name = JwtUtils.HEADER))
@Parameter(name = "deviceId", description = "设备国标编号", required = true)
@Parameter(name = "channel", description = "通道信息", required = true)
@PostMapping("/channel/stream/identification/update/")
public void updateChannelStreamIdentification(DeviceChannel channel){
deviceChannelService.updateChannelStreamIdentification(channel);

View File

@ -327,7 +327,6 @@ public class DeviceChannelServiceImpl implements IDeviceChannelService {
@Override
public void updateChannelStreamIdentification(DeviceChannel channel) {
Assert.isTrue(channel.getId() > 0, "通道ID必须存在");
Assert.hasLength(channel.getStreamIdentification(), "码流标识必须存在");
if (ObjectUtils.isEmpty(channel.getStreamIdentification())) {
log.info("[重置通道码流类型] 设备: {}, 码流: {}", channel.getDeviceId(), channel.getStreamIdentification());

View File

@ -84,6 +84,7 @@ public class CatalogResponseMessageHandler extends SIPRequestProcessorParent imp
}
@Scheduled(fixedDelay = 200)
@Transactional
public void executeTaskQueue(){
if (taskQueue.isEmpty()) {
return;

View File

@ -494,8 +494,9 @@ export default {
method: 'post',
url: `/api/device/query/channel/stream/identification/update/`,
params: {
deviceId: this.deviceId,
deviceDbId: this.device.id,
streamIdentification: this.subStream
}
}).then((res)=> {
console.log(JSON.stringify(res));
@ -513,8 +514,8 @@ export default {
method: 'post',
url: `/api/device/query/channel/stream/identification/update/`,
params: {
deviceId: this.deviceId,
channelId: row.channelId,
deviceDbId: row.deviceDbId,
id: row.id,
streamIdentification: row.streamIdentification
}
}).then(function (res) {