17 lines
641 B
TypeScript
17 lines
641 B
TypeScript
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<NdmDeviceAlarmSnapLog>;
|
|
|
|
export type NdmDeviceAlarmSnapLogSaveVO = Partial<Omit<NdmDeviceAlarmSnapLog, ReduceForSaveVO>>;
|
|
|
|
export type NdmDeviceAlarmSnapLogUpdateVO = Partial<Omit<NdmDeviceAlarmSnapLog, ReduceForUpdateVO>>;
|
|
|
|
export type NdmDeviceAlarmSnapLogPageQuery = Partial<Omit<NdmDeviceAlarmSnapLog, ReduceForPageQuery>>;
|