import type { BaseModel, ReduceForPageQuery, ReduceForSaveVO, ReduceForUpdateVO } from '@/apis'; import type { Nullable } from '@/types'; export interface NdmDeviceAlarmSnapLog extends BaseModel { absoluteFilePath: string; path: string; url: string; } export type NdmDeviceAlarmSnapLogResultVO = Nullable; export type NdmDeviceAlarmSnapLogSaveVO = Partial>; export type NdmDeviceAlarmSnapLogUpdateVO = Partial>; export type NdmDeviceAlarmSnapLogPageQuery = Partial>;