package cn.exrick.xboot.your.vo;
|
|
|
public class PlaybackURLsVo {
|
private String beginTime;
|
private String endTime;
|
private String cameraIndexCode;
|
private String recordLocation="0";//录像存储位置(0-中心存储,1-设备存储),默认中心存储
|
private String protocol;//协议类型(rtsp-rtsp协议,rtmp-rtmp协议,hLS-hLS协议,默认为rtsp)
|
private Boolean needReturnClipInfo=true;//是否返回录像片段详细信息(默认false。当需要展示该时间段的录像片段信息时,需要填写true)
|
private String uuid;//上一次查询返回的uuid,用于继续查询剩余片段,默认为空字符串
|
private String expand="transCode=0";
|
|
public String getBeginTime() {
|
return beginTime;
|
}
|
|
public void setBeginTime(String beginTime) {
|
this.beginTime = beginTime;
|
}
|
|
public String getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(String endTime) {
|
this.endTime = endTime;
|
}
|
|
public String getCameraIndexCode() {
|
return cameraIndexCode;
|
}
|
|
public void setCameraIndexCode(String cameraIndexCode) {
|
this.cameraIndexCode = cameraIndexCode;
|
}
|
|
public String getRecordLocation() {
|
return recordLocation;
|
}
|
|
public void setRecordLocation(String recordLocation) {
|
this.recordLocation = recordLocation;
|
}
|
|
public String getProtocol() {
|
return protocol;
|
}
|
|
public void setProtocol(String protocol) {
|
this.protocol = protocol;
|
}
|
|
public Boolean getNeedReturnClipInfo() {
|
return needReturnClipInfo;
|
}
|
|
public void setNeedReturnClipInfo(Boolean needReturnClipInfo) {
|
this.needReturnClipInfo = needReturnClipInfo;
|
}
|
|
public String getUuid() {
|
return uuid;
|
}
|
|
public void setUuid(String uuid) {
|
this.uuid = uuid;
|
}
|
|
public String getExpand() {
|
return expand;
|
}
|
|
public void setExpand(String expand) {
|
this.expand = expand;
|
}
|
}
|