erp-mecanicas-diesel-backen.../src/modules/gps/entities/index.ts
Adrian Flores Cortes b927bafeb0 feat(MMD-014): Implement GPS module backend
- 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>
2026-01-27 01:33:59 -06:00

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';