- Add MaintenanceReminderService (420 lines, 11 methods) - Create, pause, resume, complete maintenance reminders - Find due and overdue reminders - Vehicle-specific statistics - Add MaintenanceScheduleService (677 lines, 8 methods) - Generate maintenance schedules - Cost estimation and calendar views - Fleet-wide statistics - Add VehicleDocumentService (448 lines, 11 methods) - Document lifecycle management - Expiration tracking and alerts - Fleet document status summary - Add VehicleDocument entity with status tracking Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
317 B
TypeScript
12 lines
317 B
TypeScript
/**
|
|
* Vehicle Management Entities Index
|
|
* Mecánicas Diesel - ERP Suite
|
|
*/
|
|
|
|
export * from './vehicle.entity';
|
|
export * from './fleet.entity';
|
|
export * from './vehicle-engine.entity';
|
|
export * from './engine-catalog.entity';
|
|
export * from './maintenance-reminder.entity';
|
|
export * from './vehicle-document.entity';
|