648540858
2023-10-12 298a9f4280458062ed0fc32084d5bcce8bbf196c
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
package com.genersoft.iot.vmp.service;
 
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 startTime, String endTime);
 
    /**
     * 获取所有的日期
     */
    List<String> getDateList(Integer year, Integer month, String app, String stream);
 
 
 
 
}