1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| package com.genersoft.iot.vmp.service;
|
| import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
| import com.genersoft.iot.vmp.media.zlm.dto.hook.OnRecordMp4HookParam;
| import com.genersoft.iot.vmp.service.bean.CloudRecordItem;
| import com.github.pagehelper.PageInfo;
|
| import java.util.List;
|
| /**
| * 云端录像管理
| * @author lin
| */
| public interface ICloudRecordService {
|
| /**
| * 分页回去云端录像列表
| */
| PageInfo<CloudRecordItem> getList(int page, int count, String app, String stream, String startTime, String endTime, List<MediaServerItem> mediaServerItems);
|
| /**
| * 根据hook消息增加一条记录
| */
| void addRecord(OnRecordMp4HookParam param);
|
| /**
| * 获取所有的日期
| */
| List<String> getDateList(String app, String stream, int year, int month, List<MediaServerItem> mediaServerItems);
|
| }
|
|