parent
15f9e0a777
commit
6f78f2b6f7
@ -0,0 +1,27 @@ |
||||
package com.zilber.boot.dahua.video; |
||||
|
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* program:java-sdk-demo |
||||
* |
||||
* @Author: 355079 |
||||
* @Date:2024-04-07 10:25 |
||||
* @Description: 查询普通录像信息列表请求参数 |
||||
*/ |
||||
@Data |
||||
public class RegularVideoRecordRequest { |
||||
|
||||
private Data data; |
||||
|
||||
@lombok.Data |
||||
public static class Data{ |
||||
private String channelId; |
||||
private String recordSource; |
||||
private String startTime; |
||||
private String endTime; |
||||
private String streamType; |
||||
private String recordType; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,39 @@ |
||||
package com.zilber.boot.dahua.video; |
||||
|
||||
import com.dahuatech.icc.oauth.http.IccResponse; |
||||
import lombok.Data; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* program:java-sdk-demo |
||||
* |
||||
* @Author: 355079 |
||||
* @Date:2024-04-07 10:31 |
||||
* @Description: 查询普通录像信息列表返回结果 |
||||
*/ |
||||
@Data |
||||
public class RegularVideoRecordResponse extends IccResponse { |
||||
private Data data; |
||||
@lombok.Data |
||||
public static class Data{ |
||||
private List<RecordInfo> records; |
||||
@lombok.Data |
||||
public static class RecordInfo{ |
||||
private String channelId; |
||||
private String recordSource; |
||||
private String recordType; |
||||
private String startTime; |
||||
private String endTime; |
||||
private String recordName; |
||||
private String fileLength; |
||||
private String planId; |
||||
private String ssId; |
||||
private String diskId; |
||||
private String streamId; |
||||
private String forgotten; |
||||
private String streamType; |
||||
private String videoRecordType; |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue