manscdp RecordInfo 请求 字段补充
This commit is contained in:
parent
4baba22224
commit
648821525b
@ -19,7 +19,7 @@ import java.util.Date;
|
|||||||
@Builder
|
@Builder
|
||||||
public class RecordInfoRequestDTO {
|
public class RecordInfoRequestDTO {
|
||||||
/**
|
/**
|
||||||
* 命令类型:设备信息查询(必选)
|
* 命令类型:设备录像查询(必选)
|
||||||
*/
|
*/
|
||||||
@Builder.Default
|
@Builder.Default
|
||||||
private String cmdType = CmdType.RECORD_INFO;
|
private String cmdType = CmdType.RECORD_INFO;
|
||||||
@ -42,9 +42,26 @@ public class RecordInfoRequestDTO {
|
|||||||
@JsonFormat(pattern = GB28181Constant.DATETIME_FORMAT, timezone = GB28181Constant.TIME_ZONE)
|
@JsonFormat(pattern = GB28181Constant.DATETIME_FORMAT, timezone = GB28181Constant.TIME_ZONE)
|
||||||
private Date endTime;
|
private Date endTime;
|
||||||
|
|
||||||
|
private String filePath;
|
||||||
|
|
||||||
|
private String address;
|
||||||
|
|
||||||
@Builder.Default
|
@Builder.Default
|
||||||
private Integer Secrecy = 0;
|
private Integer Secrecy = 0;
|
||||||
|
|
||||||
@Builder.Default
|
@Builder.Default
|
||||||
private String type = "all";
|
private String type = "all";
|
||||||
|
|
||||||
|
@JacksonXmlProperty(localName = "RecorderID")
|
||||||
|
private String recorderId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 录像模糊查询属性(可选) 缺省为 0; <p/>
|
||||||
|
* 0: 不进行模糊查询,此时根据SIP消息中To头域
|
||||||
|
* URI 中的ID值确定查询录像位置,若 ID 值为本域系统 ID 则进行中心历史记录检索
|
||||||
|
* 若为前端设备 ID 则进行前端设备历史记录检索; <p/>
|
||||||
|
*
|
||||||
|
* 1: 进行模糊查询,此时设备所在域应同时进行中心检索和前端检索并将结果统一返回
|
||||||
|
*/
|
||||||
|
private Integer IndistinctQuery;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user