import { EnumCommandId } from "./enum-command-id.enum"; import { EnumErrorCode } from "./enum-error-code.enum"; import { EnumResultCode } from "./enum-result-code.enum"; export class DeviceCommand { id?: number; deviceId?: number; deviceSerialNum?: string; remoteTypeName?: string; commandFlowId?: string; commandId?: EnumCommandId; startTime?: number; sendTime?: number; responseTime?: number; endTime?: number; errorCode?: EnumErrorCode; result?: EnumResultCode; data?: any; dataJson?: string; resultData?: any; resultJson?: string; };