cameraModel.ts
869 Bytes
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
import { BasicPageParams } from '/@/api/model/baseModel';
export type CameraQueryParam = BasicPageParams & CameraParam;
export type CameraParam = {
  status: true;
  name: string;
  organizationId: string;
  orderFiled: string;
  orderType: string;
};
export interface CameraModel {
  avatar?: string;
  brand: string;
  createTime?: '2022-04-19T11:33:13.113Z';
  creator?: string;
  defaultConfig?: string;
  description?: string;
  deviceInfo?: string;
  deviceType?: string;
  enabled?: true;
  icon?: string;
  id?: string;
  name: string;
  organizationId: string;
  organizationName?: string;
  roleIds?: ['string'];
  sn: string;
  status?: false;
  tenantExpireTime?: '2022-04-19T11:33:13.113Z';
  tenantId?: string;
  tenantProfileId?: string;
  tenantStatus?: 'DISABLED';
  updateTime?: '2022-04-19T11:33:13.113Z';
  updater?: string;
  videoUrl: string;
}