69 lines
841 B
TypeScript
69 lines
841 B
TypeScript
import type { PageQuery, BaseEntity } from '#/api/common';
|
|
|
|
export interface AttendanceAreaVO {
|
|
/**
|
|
* 主键id
|
|
*/
|
|
id: string | number;
|
|
|
|
/**
|
|
* 摄像机列表
|
|
*/
|
|
deviceManageId: any[];
|
|
|
|
/**
|
|
* 区域
|
|
*/
|
|
area: string;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
reamark: string;
|
|
areaDevice?: any[];
|
|
}
|
|
|
|
export interface AttendanceAreaForm extends BaseEntity {
|
|
/**
|
|
* 主键id
|
|
*/
|
|
id?: string | number;
|
|
|
|
/**
|
|
* 摄像机id
|
|
*/
|
|
deviceManageId?: string | number;
|
|
|
|
/**
|
|
* 区域
|
|
*/
|
|
area?: string;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
reamark?: string;
|
|
}
|
|
|
|
export interface AttendanceAreaQuery extends PageQuery {
|
|
/**
|
|
* 摄像机id
|
|
*/
|
|
deviceManageId?: string | number;
|
|
|
|
/**
|
|
* 区域
|
|
*/
|
|
area?: string;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
reamark?: string;
|
|
|
|
/**
|
|
* 日期范围参数
|
|
*/
|
|
params?: any;
|
|
}
|