| | |
| | | |
| | | /** |
| | | * 查询包裹总数,违禁品总数 |
| | | * @param status 状态码 0:本天 1:本周 2:本月 |
| | | * @param conditionVo status 状态码 0:本天 1:本周 2:本月 |
| | | * @return |
| | | */ |
| | | List<Integer> selectParcelCount(Integer status); |
| | | List<Integer> selectParcelCount(ConditionVo conditionVo); |
| | | |
| | | /** |
| | | * 查询7天内违禁品每天的数量 |
| | | * @return |
| | | */ |
| | | Map<String, Object> selectParcelData(); |
| | | Map<String, Object> selectParcelData(ConditionVo conditionVo); |
| | | |
| | | |
| | | /** |
| | |
| | | * @param imgUrl 图片Url |
| | | * @return |
| | | */ |
| | | Map<String, String> getParcelPic(String imgUrl); |
| | | Map<String, Object> getParcelPic(String imgUrl); |
| | | |
| | | /** |
| | | * 获取包裹明细分页数据,远程调用api获取数据 |
| | |
| | | * @return |
| | | */ |
| | | Object getParcelDetailPage(ConditionVo conditionVo); |
| | | |
| | | /** |
| | | * 获取包裹违禁品明细分页数据,远程调用api获取数据 |
| | | * @param conditionVo 请求参数对象 |
| | | * @return |
| | | */ |
| | | Object getParcelkindDetailPage(ConditionVo conditionVo); |
| | | |
| | | /** |
| | | * 查询当前时间段违禁品总个数 |
| | | * @param conditionVo |
| | | * @return |
| | | */ |
| | | Integer selParcelTimeCount(ConditionVo conditionVo); |
| | | |
| | | /** |
| | | *查询当前时间段区间时间违禁品个数 |
| | | * @param conditionVo |
| | | * @return |
| | | */ |
| | | List<Integer> selParcelTimeDis(ConditionVo conditionVo); |
| | | } |