优化国标录像的异常判断

This commit is contained in:
648540858
2022-08-23 11:00:46 +08:00
parent 042b28b2d6
commit f24b6fa13f
6 changed files with 59 additions and 23 deletions

View File

@@ -12,6 +12,8 @@ import java.util.EventObject;
*/
public class PlayBackResult<T> {
private int code;
private String msg;
private T data;
private MediaServerItem mediaServerItem;
private JSONObject response;
@@ -56,4 +58,12 @@ public class PlayBackResult<T> {
public void setEvent(SipSubscribe.EventResult<EventObject> event) {
this.event = event;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
}