Files
admin-vben5/apps/web-antd/src/api/sis/alarmEventAttachments/model.d.ts
2025-08-17 07:03:48 +08:00

72 lines
968 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { PageQuery, BaseEntity } from '#/api/common';
export interface AlarmEventAttachmentsVO {
/**
* 主键id
*/
id: string | number;
/**
* 事件id
*/
eventId: string | number;
/**
* 时间图片id
*/
ossId: string | number;
imagePath: string;
/**
* 1图片2文件3视频
*/
type: number;
}
export interface AlarmEventAttachmentsForm extends BaseEntity {
/**
* 主键id
*/
id?: string | number;
/**
* 事件id
*/
eventId?: string | number;
/**
* 时间图片id
*/
ossId?: string | number;
/**
* 1图片2文件3视频
*/
type?: number;
}
export interface AlarmEventAttachmentsQuery extends PageQuery {
/**
* 事件id
*/
eventId?: string | number;
/**
* 时间图片id
*/
ossId?: string | number;
/**
* 1图片2文件3视频
*/
type?: number;
/**
* 日期范围参数
*/
params?: any;
}