longyvfengyun
2023-11-16 b537c7bccbcc20644902ad6f0e309bbe9a6eda24
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import axios from "@/assets/js/axios";
 
/**
 * 统计最近7日新增的摄像头
 * @return {Promise<axios.AxiosResponse<any>> | *}
 */
export const searchStatisticCreate = ()=>{
  return axios({
    method: "GET",
    url: "/monitor/cameraDevice/statisticCreate",
  });
}
 
/**
 * 统计摄像头总数
 * @return {Promise<axios.AxiosResponse<any>> | *}
 */
export const searchStatisticSum = ()=>{
  return axios({
    method: "GET",
    url: "/monitor/cameraDevice/statisticSum",
  });
}