parent
0cc8c50b0b
commit
15f9e0a777
@ -0,0 +1,26 @@ |
||||
package com.zilber.boot.dahua.video; |
||||
|
||||
import com.dahuatech.icc.oauth.http.IccResponse; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* program:java-sdk-demo |
||||
* |
||||
* @Author: 355079 |
||||
* @Date:2024-04-07 13:48 |
||||
* @Description: rtsp以时间形式回放录像返回结果 |
||||
*/ |
||||
@Data |
||||
public class PlayBackByTimeResponse extends IccResponse { |
||||
|
||||
private Data data; |
||||
@lombok.Data |
||||
public static class Data{ |
||||
private String url; |
||||
private String session; |
||||
private String protocol; |
||||
private String token; |
||||
private String fromDevice; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,25 @@ |
||||
package com.zilber.boot.dahua.video; |
||||
|
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* program:java-sdk-demo |
||||
* |
||||
* @Author: 355079 |
||||
* @Date:2024-04-07 13:48 |
||||
* @Description: rtsp以时间形式回放录像请求参数 |
||||
*/ |
||||
@Data |
||||
public class PlaybackByTimeRequest { |
||||
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; |
||||
} |
||||
} |
Loading…
Reference in new issue