import { ApiClientFactory } from '../core/api.client.factory'; import { ISteelWireBimData } from '../model/steelWire.model'; export class SteelWireService { constructor(private factory: ApiClientFactory) {} // 钢丝绳损伤数字工地-二级详情 async getSteelWireBimData(projectId: string, deviceId: string): Promise { const result = await this.factory.entity.get(`/api/web/projects/${projectId}/wireRopeImage/deviceId/${deviceId}/getDigitalConstructionSiteDamageRecord`); return result; } }