This commit is contained in:
69
apps/web-antd/src/api/sis/alarmEventAttachments/model.d.ts
vendored
Normal file
69
apps/web-antd/src/api/sis/alarmEventAttachments/model.d.ts
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
import type { PageQuery, BaseEntity } from '#/api/common';
|
||||
|
||||
export interface AlarmEventAttachmentsVO {
|
||||
/**
|
||||
* 主键id
|
||||
*/
|
||||
id: string | number;
|
||||
|
||||
/**
|
||||
* 事件id
|
||||
*/
|
||||
eventId: string | number;
|
||||
|
||||
/**
|
||||
* 时间图片id
|
||||
*/
|
||||
ossId: string | number;
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
Reference in New Issue
Block a user