规范数据库,解决bug

This commit is contained in:
648540858
2022-02-25 20:33:02 +08:00
parent a42dda2bd3
commit 7400ace65d
19 changed files with 142 additions and 82 deletions

View File

@@ -3,6 +3,10 @@ package com.genersoft.iot.vmp.gb28181.bean;
public class DeviceChannel {
/**
* 数据库自赠ID
*/
private int id;
/**
* 通道id
@@ -165,6 +169,14 @@ public class DeviceChannel {
*/
private boolean hasAudio;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getDeviceId() {
return deviceId;
}