export interface DeviceConfigListModel { version: string; organizationCode: string; organizationName: string; productCode: string; productName: string; createTime: string; updateTime: string; hasInterfaceUrl: boolean; } export interface DeviceTypeModel { productCode: string; productName: string; } export interface DevicesOrganizationsModel { productCode: string; productName: string; organizations: Organizations[]; } export interface Organizations { version: string; organizationCode: string; organizationName: string; } export interface ChangeImgParams { picUrl: string; deviceName: string; }