南昌市物联网技防平台-后台
Administrator
2021-03-21 48707050fa3f5a9870e6af09adb66ea8f8a8c3e8
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package org.springblade.jfpt.parcel.service;
 
import org.springblade.jfpt.parcel.vo.ConditionVo;
 
import java.util.List;
import java.util.Map;
 
/**
 * 包裹服务接口层
 */
public interface ParcelService {
    /**
     * 获取违禁包裹统计数据,远程调用接口
     * @param conditionVo 查询条件对象  状态码 0:本天    1:本周   2:本月
     * @return
     */
    List<Map<String,Object>> parcelKindStatis(ConditionVo conditionVo);
 
    /**
     * 获取包裹统计数据,远程调用接口获取数据
     * @param conditionVo 查询条件对象  status 状态码 0:本天    1:本周   2:本月
     * @return
     */
    Object getParcelStatis(ConditionVo conditionVo);
 
    /**
     * 查询包裹总数,违禁品总数
     * @param status 状态码 0:本天    1:本周   2:本月
     * @return
     */
    List<Integer> selectParcelCount(Integer status);
 
    /**
     * 查询7天内违禁品每天的数量
     * @return
     */
    Map<String, Object> selectParcelData();
 
 
    /**
     * 获取图片地址
     * @param imgUrl 图片Url
     * @return
     */
    Map<String, String> getParcelPic(String imgUrl);
}