Skip to content

batchGet

多船查询

按多个船舶主键批量查询船舶信息。

调用方式:

typescript
const data = await client.ship.batchGet(params);

请求信息: GET /apicall/GetManyShip,鉴权参数 k

请求参数 (ShipBatchGetParams)

参数名类型必填描述补充说明
idstring船舶主键列表,多条船舶以逗号分隔。备注: 多条船舶以逗号分隔

返回类型: ShipBatchGetData

查看类型定义
typescript
export type ShipBatchGetData = ShipRecord[];