1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.cloud.retrieve.service;
|
| import com.alibaba.fastjson.JSONObject;
| import com.cloud.model.common.Result;
|
| public interface AnalyDevService {
|
| JSONObject getBigPic(String videoNum, String picDate, String videoIp, String indeviceid, String imgKey);
|
| JSONObject getVideo(String videoNum, String picDate, String videoIp, String indeviceid, String imgKey);
|
| Result getDevSnapshot(String devId);
| }
|
|