42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import type { BaseModel, ReduceForSaveVO, ReduceForUpdateVO, ReduceForPageQuery } from '../../base';
|
|
|
|
export interface NdmDecoderVO extends BaseModel {
|
|
deviceId: string;
|
|
name: string;
|
|
manufacturer: string;
|
|
state: boolean;
|
|
model: string;
|
|
ipAddress: string;
|
|
manageUrl: string;
|
|
manageUsername: string;
|
|
managePassword: string;
|
|
gbCode: string;
|
|
gbPort: number;
|
|
gbDomain: string;
|
|
gb28181Enabled: boolean;
|
|
onvifPort: number;
|
|
onvifUsername: string;
|
|
onvifPassword: string;
|
|
diagFlag: string;
|
|
diagParam: string;
|
|
diagFormat: string;
|
|
lastDiagInfo: string;
|
|
lastDiagTime: string;
|
|
icmpEnabled: boolean;
|
|
description: string;
|
|
deviceStatus: string;
|
|
deviceType: string;
|
|
community: string;
|
|
frontendConfig: string;
|
|
linkDescription: string;
|
|
snmpEnabled: boolean;
|
|
}
|
|
|
|
export type NdmDecoderResultVO = Partial<NdmDecoderVO>;
|
|
|
|
export type NdmDecoderSaveVO = Partial<Omit<NdmDecoderVO, ReduceForSaveVO>>;
|
|
|
|
export type NdmDecoderUpdateVO = Partial<Omit<NdmDecoderVO, ReduceForUpdateVO>>;
|
|
|
|
export type NdmDecoderPageQuery = Partial<Omit<NdmDecoderVO, ReduceForPageQuery>>;
|