import type { BaseModel, ReduceForSaveVO, ReduceForUpdateVO, ReduceForPageQuery } from '../../base'; export interface NdmIcmpLogVO extends BaseModel { deviceId: string; name: string; ipAddress: string; deviceStatus: string; } export type NdmIcmpLogResultVO = Partial; export type NdmIcmpLogSaveVO = Partial>; export type NdmIcmpLogUpdateVO = Partial>; export type NdmIcmpLogPageQuery = Partial>;