|  |  |  | 
|---|
|  |  |  | @Schema(description = "密码") | 
|---|
|  |  |  | private String password; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "收流IP") | 
|---|
|  |  |  | private String sdpIp; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(description = "SIP交互IP(设备访问平台的IP)") | 
|---|
|  |  |  | private String localIp; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getDeviceId() { | 
|---|
|  |  |  | return deviceId; | 
|---|
|  |  |  | 
|---|
|  |  |  | public void setPassword(String password) { | 
|---|
|  |  |  | this.password = password; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getSdpIp() { | 
|---|
|  |  |  | return sdpIp; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setSdpIp(String sdpIp) { | 
|---|
|  |  |  | this.sdpIp = sdpIp; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public String getLocalIp() { | 
|---|
|  |  |  | return localIp; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void setLocalIp(String localIp) { | 
|---|
|  |  |  | this.localIp = localIp; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|