- Add 5 entities: GpsDevice, GpsPosition, Geofence, GeofenceEvent, RouteSegment - Add 4 services with full business logic - Add 4 controllers with REST endpoints - Integrate GPS module into main.ts - Endpoints: /api/v1/gps/devices, positions, geofences, routes - Features: device management, position tracking, geofencing, route calculation Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
259 B
TypeScript
11 lines
259 B
TypeScript
/**
|
|
* GPS Module Entities
|
|
* Module: MMD-014 GPS Integration
|
|
*/
|
|
|
|
export * from './gps-device.entity';
|
|
export * from './gps-position.entity';
|
|
export * from './geofence.entity';
|
|
export * from './geofence-event.entity';
|
|
export * from './route-segment.entity';
|