2026-02-20 00:33:08 +09:00
|
|
|
/** GET /api/v2/vessels/chnprmship/recent-positions 응답 항목 */
|
|
|
|
|
export interface ChnPrmShipPositionDto {
|
|
|
|
|
mmsi: string;
|
|
|
|
|
imo: number;
|
|
|
|
|
name: string;
|
|
|
|
|
callsign: string;
|
|
|
|
|
vesselType: string;
|
|
|
|
|
lat: number;
|
|
|
|
|
lon: number;
|
|
|
|
|
sog: number;
|
|
|
|
|
cog: number;
|
|
|
|
|
heading: number;
|
|
|
|
|
length: number;
|
|
|
|
|
width: number;
|
|
|
|
|
draught: number;
|
|
|
|
|
destination: string;
|
|
|
|
|
status: string;
|
|
|
|
|
signalKindCode: string;
|
|
|
|
|
messageTimestamp: string;
|
2026-02-20 03:45:25 +09:00
|
|
|
shipImagePath?: string | null;
|
|
|
|
|
shipImageCount?: number;
|
2026-02-20 00:33:08 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** GET /api/v2/vessels/recent-positions 응답 항목 */
|
|
|
|
|
export interface RecentVesselPositionDto {
|
|
|
|
|
mmsi: string;
|
2026-02-20 03:45:25 +09:00
|
|
|
imo?: number;
|
2026-02-20 00:33:08 +09:00
|
|
|
lon: number;
|
|
|
|
|
lat: number;
|
|
|
|
|
sog: number;
|
|
|
|
|
cog: number;
|
|
|
|
|
shipNm: string;
|
|
|
|
|
shipTy: string;
|
|
|
|
|
shipKindCode: string;
|
|
|
|
|
nationalCode: string;
|
|
|
|
|
lastUpdate: string;
|
2026-02-20 03:45:25 +09:00
|
|
|
shipImagePath?: string | null;
|
|
|
|
|
shipImageCount?: number;
|
2026-02-20 00:33:08 +09:00
|
|
|
}
|