import { ApiClientFactory } from '../core/api.client.factory'; export class HangBasketService { constructor(private factory: ApiClientFactory) {} // 获取吊篮监测 数字工地 数据接口 async getHangBasketInfo(projectId: string, deviceId: any): Promise { const result = await this.factory.entity.get( `/api/web/projects/${projectId}/hangbasket/device/${deviceId}/info` ); return result; } }